diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-27 01:13:37 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-27 01:13:37 +0200 |
commit | ab7d6cb8f770c3b88a8139d1182fcc934062f891 (patch) | |
tree | 6943efc1f99b73d79ae6938951619369745dc573 /libavformat/riff.c | |
parent | 5c3f79198c016980b8bd5e876761eb42341c3cec (diff) | |
download | ffmpeg-ab7d6cb8f770c3b88a8139d1182fcc934062f891.tar.gz |
Support decoding fourcc YVYU.
Based on work by ami_stuff.
Fixes ticket #1352
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index fb3e8ac9dd..add8440429 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -199,6 +199,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'V', '9') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') }, { CODEC_ID_RAWVIDEO, MKTAG('a', 'u', 'v', '2') }, + { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'Y', 'U') }, { CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') }, { CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, |