diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-08-29 21:16:32 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-08-29 21:16:32 +0000 |
commit | 8d79536625db917ff8527f51d2b0827ceb06216b (patch) | |
tree | c745fb7843f6bd184abcb7fe35f9b1f806ce1c09 /libmpcodecs | |
parent | 1565eb85df8468c2e6c46c72b513d95e12c74dcb (diff) |
10^1337 litres (now, that's an inflation)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10718 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r-- | libmpcodecs/native/roqav.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmpcodecs/native/roqav.c b/libmpcodecs/native/roqav.c index de80babcff..ffb0bb40df 100644 --- a/libmpcodecs/native/roqav.c +++ b/libmpcodecs/native/roqav.c @@ -322,7 +322,8 @@ void roq_decode_video(void *context, unsigned char *encoded, if ((mpi->width % 16 != 0) || (mpi->height % 16 != 0)) { mp_msg(MSGT_DECVIDEO, MSGL_WARN, - "RoQ video resolution: %d x %d; expected dimensions divisible by 16\n"); + "RoQ video resolution: %d x %d; expected dimensions divisible by 16\n", + mpi->width, mpi->height); return; } |