[MPlayer-cvslog] r36234 - trunk/libmpcodecs/vd_ffmpeg.c

reimar subversion at mplayerhq.hu
Sun May 5 09:27:30 CEST 2013


Author: reimar
Date: Sun May  5 09:27:29 2013
New Revision: 36234

Log:
Add more information to error message.

Modified:
   trunk/libmpcodecs/vd_ffmpeg.c

Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c	Sat May  4 23:55:52 2013	(r36233)
+++ trunk/libmpcodecs/vd_ffmpeg.c	Sun May  5 09:27:29 2013	(r36234)
@@ -942,7 +942,8 @@ static mp_image_t *decode(sh_video_t *sh
 
     if (mpi->w != pic->width || mpi->h != pic->height ||
         pic->width != avctx->width || pic->height != avctx->height) {
-        mp_msg(MSGT_DECVIDEO, MSGL_ERR, "Dropping frame with size not matching configured size\n");
+        mp_msg(MSGT_DECVIDEO, MSGL_ERR, "Dropping frame with size not matching configured size (%ix%i vs %ix%i vs %ix%i)\n",
+               mpi->w, mpi->h, pic->width, pic->height, avctx->width, avctx->height);
         return NULL;
     }
 


More information about the MPlayer-cvslog mailing list