diff options
author | Steven M. Schultz <sms@2bsd.com> | 2004-04-01 23:32:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-01 23:32:53 +0000 |
commit | d298185c730eb025eb9bc9da0ba3f08c2222a450 (patch) | |
tree | baa6af03dfe30233c147e14188e74e0fa2580d94 /libavformat | |
parent | 0a3b044718501305ce7a536e5dc5f652498c31a7 (diff) | |
download | ffmpeg-d298185c730eb025eb9bc9da0ba3f08c2222a450.tar.gz |
yuv4mpeg output 'C' tag patch by ("Steven M. Schultz" <sms at 2bsd dot com>)
Originally committed as revision 2944 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/yuv4mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/yuv4mpeg.c b/libavformat/yuv4mpeg.c index 54fbff57f8..1520b34635 100644 --- a/libavformat/yuv4mpeg.c +++ b/libavformat/yuv4mpeg.c @@ -53,7 +53,7 @@ static int yuv4_generate_header(AVFormatContext *s, char* buf) raten, rated, inter, aspectn, aspectd, - (st->codec.pix_fmt == PIX_FMT_YUV411P) ? " XYSCSS=411" : ""); + (st->codec.pix_fmt == PIX_FMT_YUV411P) ? " C411 XYSCSS=411" : " C420mpeg2 XYSCSS=420MPEG2"); return n; } |