From 275f89e3cd44ea856908766d38372fc86bf13e5a Mon Sep 17 00:00:00 2001 From: reimar Date: Thu, 4 Jan 2007 19:33:03 +0000 Subject: Fix printf types: AVRational members are ints, not 64 bit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21822 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_yuv4mpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libvo') diff --git a/libvo/vo_yuv4mpeg.c b/libvo/vo_yuv4mpeg.c index 98c3b587de..bf657c3a92 100644 --- a/libvo/vo_yuv4mpeg.c +++ b/libvo/vo_yuv4mpeg.c @@ -157,7 +157,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width, 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); -- cgit v1.2.3