summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-04 19:33:03 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-04 19:33:03 +0000
commit275f89e3cd44ea856908766d38372fc86bf13e5a (patch)
treefe39dda281aa52934568f77dba3f4e44ead8b59b /libvo
parentfde73bb200147e241d6f4e270a9d190059086e82 (diff)
downloadmpv-275f89e3cd44ea856908766d38372fc86bf13e5a.tar.bz2
mpv-275f89e3cd44ea856908766d38372fc86bf13e5a.tar.xz
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
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_yuv4mpeg.c2
1 files changed, 1 insertions, 1 deletions
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);