diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2008-02-27 20:34:44 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2008-02-27 20:34:44 +0000 |
commit | 800b9c24b71413e9265be47c47c30be35bc04bd1 (patch) | |
tree | 7390b08fefa6691f419a16f3152a0705db9fa132 /libavformat/riff.c | |
parent | da00a1bdf44eb27e5b07f1b173c0721e195f25d1 (diff) | |
download | ffmpeg-800b9c24b71413e9265be47c47c30be35bc04bd1.tar.gz |
Add more riff IDs to support remuxing.
Originally committed as revision 12266 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 792246f005..6527e2e6e3 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -121,6 +121,8 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('H', 'D', 'Y', 'C') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') }, + { CODEC_ID_INDEO4, MKTAG('I', 'V', '4', '1') }, + { CODEC_ID_INDEO5, MKTAG('I', 'V', '5', '0') }, { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') }, { CODEC_ID_VP5, MKTAG('V', 'P', '5', '0') }, @@ -199,6 +201,7 @@ const AVCodecTag codec_wav_tags[] = { { CODEC_ID_WMAV1, 0x0160 }, { CODEC_ID_WMAV2, 0x0161 }, { CODEC_ID_WMAPRO, 0x0162 }, + { CODEC_ID_WMALOSSLESS, 0x0163 }, { CODEC_ID_ADPCM_CT, 0x0200 }, { CODEC_ID_ATRAC3, 0x0270 }, { CODEC_ID_IMC, 0x0401 }, |