From 6ae177aa3bd144c02b8bf7faef42145505db717f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 13 Oct 2006 00:02:33 +0000 Subject: Add a note about illegal codec IDs. Originally committed as revision 6681 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/riff.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/riff.c b/libavformat/riff.c index c3c8a88..431211d 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -193,6 +193,8 @@ const CodecTag codec_wav_tags[] = { { CODEC_ID_ADPCM_CT, 0x200 }, { CODEC_ID_ADPCM_SWF, ('S'<<8)+'F' }, { CODEC_ID_TRUESPEECH, 0x22 }, + + /* FIXME: All of the IDs below are not 16 bit and thus illegal. */ { CODEC_ID_FLAC, MKTAG('f', 'L', 'a', 'C') }, { CODEC_ID_TTA, MKTAG('T', 'T', 'A', '1') }, { CODEC_ID_WAVPACK, MKTAG('W', 'V', 'P', 'K') }, -- cgit v1.1