From 383dde71f7f29183aa7b3601724d412ac860742b Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 31 Jan 2009 06:46:42 +0000 Subject: [PATCH] stored height is stupidly /2 if interlaced Originally committed as revision 16891 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mxfenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 95ee847..5ac4041 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -580,6 +580,7 @@ static const UID mxf_wav_descriptor_key = { 0x06,0x0E,0x2B,0x34,0x02,0x53, static void mxf_write_mpegvideo_desc(AVFormatContext *s, AVStream *st) { + MXFStreamContext *sc = st->priv_data; ByteIOContext *pb = s->pb; int stored_height = (st->codec->height+15)/16*16; AVRational dar; @@ -590,7 +591,7 @@ static void mxf_write_mpegvideo_desc(AVFormatContext *s, AVStream *st) put_be32(pb, st->codec->width); mxf_write_local_tag(pb, 4, 0x3202); - put_be32(pb, stored_height); + put_be32(pb, stored_height>>sc->interlaced); av_reduce(&dar.num, &dar.den, st->codec->width*st->codec->sample_aspect_ratio.num, -- 2.7.4