Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-05-27 03:13:37 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-05-27 03:13:37 +0400
commitab7d6cb8f770c3b88a8139d1182fcc934062f891 (patch)
tree6943efc1f99b73d79ae6938951619369745dc573 /libavformat/riff.c
parent5c3f79198c016980b8bd5e876761eb42341c3cec (diff)
Support decoding fourcc YVYU.
Based on work by ami_stuff. Fixes ticket #1352
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c1
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') },