[FFmpeg-soc] [soc]: r3612 - mxf/mxfenc.c
Aurelien Jacobs
aurel at gnuage.org
Mon Aug 25 17:54:55 CEST 2008
spyfeng wrote:
> Author: spyfeng
> Date: Mon Aug 25 17:32:05 2008
> New Revision: 3612
>
> Log:
> modify back to consistence with ffmpeg trunk
>
>
> Modified:
> mxf/mxfenc.c
>
> Modified: mxf/mxfenc.c
> ==============================================================================
> --- mxf/mxfenc.c (original)
> +++ mxf/mxfenc.c Mon Aug 25 17:32:05 2008
> @@ -634,8 +634,8 @@ static void mxf_write_mpeg_video_desc(AV
> put_be32(pb, st->codec->height);
>
> mxf_write_local_tag(pb, 8, 0x320E);
> - put_be32(pb, st->codec->height * st->codec->sample_aspect_ratio.den);
> - put_be32(pb, st->codec->width * st->codec->sample_aspect_ratio.num);
> + put_be32(pb, st->codec->height * st->sample_aspect_ratio.den);
> + put_be32(pb, st->codec->width * st->sample_aspect_ratio.num);
This is not consistent with trunk (hint: vertical alignment).
Aurel
More information about the FFmpeg-soc
mailing list