[MPlayer-cvslog] r21822 - trunk/libvo/vo_yuv4mpeg.c
reimar
subversion at mplayerhq.hu
Thu Jan 4 20:33:04 CET 2007
Author: reimar
Date: Thu Jan 4 20:33:03 2007
New Revision: 21822
Modified:
trunk/libvo/vo_yuv4mpeg.c
Log:
Fix printf types: AVRational members are ints, not 64 bit.
Modified: trunk/libvo/vo_yuv4mpeg.c
==============================================================================
--- trunk/libvo/vo_yuv4mpeg.c (original)
+++ trunk/libvo/vo_yuv4mpeg.c Thu Jan 4 20:33:03 2007
@@ -157,7 +157,7 @@
image_u = image_y + image_width * image_height;
image_v = image_u + image_width * image_height / 4;
- fprintf(yuv_out, "YUV4MPEG2 W%d H%d F%ld:%ld I%c A%"PRId64":%"PRId64"\n",
+ fprintf(yuv_out, "YUV4MPEG2 W%d H%d F%ld:%ld I%c A%d:%d\n",
image_width, image_height, (long)(image_fps * 1000000.0),
(long)1000000, config_interlace,
pixelaspect.num, pixelaspect.den);
More information about the MPlayer-cvslog
mailing list