Mercurial > mplayer.hg
changeset 20398:69cb57c406a8
Set aspect information in yuv4mpeg
author | reimar |
---|---|
date | Mon, 23 Oct 2006 15:43:42 +0000 |
parents | 1685fb149c76 |
children | 27aa9329d4f7 |
files | libvo/vo_yuv4mpeg.c |
diffstat | 1 files changed, 6 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_yuv4mpeg.c Mon Oct 23 14:03:49 2006 +0000 +++ b/libvo/vo_yuv4mpeg.c Mon Oct 23 15:43:42 2006 +0000 @@ -41,6 +41,7 @@ #include "fastmemcpy.h" #include "libswscale/swscale.h" #include "libmpcodecs/vf_scale.h" +#include "libavutil/rational.h" static vo_info_t info = { @@ -82,6 +83,8 @@ uint32_t d_height, uint32_t flags, char *title, uint32_t format) { + AVRational pixelaspect = av_div_q((AVRational){d_width, d_height}, + (AVRational){width, height}); if (image_width == width && image_height == height && image_fps == vo_fps && vo_config_count) return 0; @@ -153,14 +156,10 @@ image_u = image_y + image_width * image_height; image_v = image_u + image_width * image_height / 4; - // This isn't right. - // But it should work as long as the file isn't interlaced - // or otherwise unusual (the "Ip A0:0" part). - - /* At least the interlacing is ok now */ - fprintf(yuv_out, "YUV4MPEG2 W%d H%d F%ld:%ld I%c A0:0\n", + fprintf(yuv_out, "YUV4MPEG2 W%d H%d F%ld:%ld I%c A%"PRId64":%"PRId64"\n", image_width, image_height, (long)(image_fps * 1000000.0), - (long)1000000, config_interlace); + (long)1000000, config_interlace, + pixelaspect.num, pixelaspect.den); fflush(yuv_out); return 0;