Commit b1c00341 authored by Peter Ross's avatar Peter Ross

Make AIFF demuxer handle F32BE and F64BE PCM audio.

Originally committed as revision 14837 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a1ef2c4b
......@@ -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') },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment