diff options
author | Google <> | 2010-06-28 20:38:36 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-06-28 20:38:36 +0000 |
commit | 9d1213912f57080b3d314b5d7ab0950d84cf930c (patch) | |
tree | d2d56d5779efa3758bda51937547e57dd7dad643 | |
parent | edf5072fea9955567e9143298491e08eaccde925 (diff) | |
download | ffmpeg-9d1213912f57080b3d314b5d7ab0950d84cf930c.tar.gz |
Add VP80 fourcc
Patch by Google
backport r23193 by conrad
Originally committed as revision 23863 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
-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 04b710854a..64464caa5d 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -183,6 +183,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') }, { CODEC_ID_VP6F, MKTAG('V', 'P', '6', 'F') }, { CODEC_ID_VP6F, MKTAG('F', 'L', 'V', '4') }, + { CODEC_ID_VP8, MKTAG('V', 'P', '8', '0') }, { CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') }, { CODEC_ID_ASV2, MKTAG('A', 'S', 'V', '2') }, { CODEC_ID_VCR1, MKTAG('V', 'C', 'R', '1') }, |