# HG changeset patch # User reimar # Date 1367738849 0 # Node ID 6a13cab4e8307f0449b26380805d8d9026c7ceb4 # Parent 1f8e6c375fc33e30c8724cdf15b0d769f2a809a8 Add more information to error message. diff -r 1f8e6c375fc3 -r 6a13cab4e830 libmpcodecs/vd_ffmpeg.c --- a/libmpcodecs/vd_ffmpeg.c Sat May 04 21:55:52 2013 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Sun May 05 07:27:29 2013 +0000 @@ -942,7 +942,8 @@ 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; }