Mercurial > libavformat.hg
changeset 3739:d7fa8d9effe5 libavformat
Make AIFF demuxer handle F32BE and F64BE PCM audio.
author | pross |
---|---|
date | Tue, 19 Aug 2008 11:05:29 +0000 |
parents | 0c46eb1cd9b3 |
children | b31821aa2235 |
files | aiff.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/aiff.c Tue Aug 19 11:00:40 2008 +0000 +++ b/aiff.c Tue Aug 19 11:05:29 2008 +0000 @@ -29,6 +29,8 @@ { 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') },