summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-09 22:56:04 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-05-09 22:56:04 +0000
commitb43f432c8c4c83ad98265c5055766f1bec905a52 (patch)
treec6e0c7f48a66a9de15ef7bed2ec2b807b5bc0488 /libavformat/riff.c
parent8e89cd1feeda9cda714268b596c27d363de78244 (diff)
Add support to the Y411 codec tag, corresponding to the rawvideo pixel
format uyyvyy411. The codec tag is referenced in fourcc.org. Originally committed as revision 23072 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 340fd760c0..2b4c53f490 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -167,6 +167,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG('H', 'D', 'Y', 'C') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') },
{ CODEC_ID_RAWVIDEO, MKTAG('V', 'D', 'T', 'Z') }, /* SoftLab-NSK VideoTizer */
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '1', '1') },
{ CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') },
{ CODEC_ID_R210, MKTAG('r', '2', '1', '0') },
{ CODEC_ID_V210, MKTAG('v', '2', '1', '0') },