summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorBen Littler <tempn@twmi.rr.com>2009-10-27 15:57:28 +0000
committerBen Littler <tempn@twmi.rr.com>2009-10-27 15:57:28 +0000
commit9853bbb21a19d540850de60d3e9cf7c6ef9da7dc (patch)
treeac3ea091f0124fbf3fd9f806d84ce452e6d549e9 /libavformat/riff.c
parentff54bb975a1f3cf82b69bc3903875f48f7755a4e (diff)
add some raw codec fourccs, fixes:
samples/V-codecs/ P422.AVI UYNV.AVI UYNY.AVI V422.AVI YUNV.AVI Originally committed as revision 20379 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 74d3908b69..ffc15ded5f 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -141,6 +141,13 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'Y', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') },
+ { CODEC_ID_RAWVIDEO, MKTAG('V', '4', '2', '2') },
+ { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'N', 'V') },
+ { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'N', 'V') },
+ { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'N', 'Y') },
+ { CODEC_ID_RAWVIDEO, MKTAG('u', 'y', 'v', '1') },
+ { CODEC_ID_RAWVIDEO, MKTAG('2', 'V', 'u', '1') },
+ { CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') },
{ CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') },