diff options
author | Peter Ross <pross@xvid.org> | 2008-08-19 11:05:29 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2008-08-19 11:05:29 +0000 |
commit | b1c00341a5ce402e98c899675113ee979e5feffc (patch) | |
tree | 8cf292a48cd7b65ba666dad7b261afff59908ace /libavformat | |
parent | a1ef2c4bb3a7aac249e6d07efcae01d7abf5485a (diff) | |
download | ffmpeg-b1c00341a5ce402e98c899675113ee979e5feffc.tar.gz |
Make AIFF demuxer handle F32BE and F64BE PCM audio.
Originally committed as revision 14837 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/aiff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 0ec8992c48..3dabbb81e9 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -29,6 +29,8 @@ static const AVCodecTag codec_aiff_tags[] = { { CODEC_ID_PCM_S8, MKTAG('N','O','N','E') }, { CODEC_ID_PCM_S24BE, MKTAG('N','O','N','E') }, { CODEC_ID_PCM_S32BE, MKTAG('N','O','N','E') }, + { CODEC_ID_PCM_F32BE, MKTAG('f','l','3','2') }, + { CODEC_ID_PCM_F64BE, MKTAG('f','l','6','4') }, { CODEC_ID_PCM_ALAW, MKTAG('a','l','a','w') }, { CODEC_ID_PCM_MULAW, MKTAG('u','l','a','w') }, { CODEC_ID_MACE3, MKTAG('M','A','C','3') }, |