changeset 21804:1796373d7925

Fix printf types: AVRational members are ints, not 64 bit.
author reimar
date Thu, 04 Jan 2007 19:33:03 +0000
parents 3acc4b00bcc6
children 924da043b8ce
files libvo/vo_yuv4mpeg.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_yuv4mpeg.c	Thu Jan 04 16:46:15 2007 +0000
+++ b/libvo/vo_yuv4mpeg.c	Thu Jan 04 19:33:03 2007 +0000
@@ -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);