diff options
author | Peter Ross <pross@xvid.org> | 2008-08-19 11:00:40 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2008-08-19 11:00:40 +0000 |
commit | a1ef2c4bb3a7aac249e6d07efcae01d7abf5485a (patch) | |
tree | f28671d947dc76ab2d06186048f6a352a5e80080 /libavformat/mov.c | |
parent | 57406d8eb85aba0a5527a84168dd361a00f819ba (diff) | |
download | ffmpeg-a1ef2c4bb3a7aac249e6d07efcae01d7abf5485a.tar.gz |
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
Originally committed as revision 14836 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 62efb0e8f4..8c077f549d 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -565,6 +565,12 @@ static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) case CODEC_ID_PCM_S32BE: st->codec->codec_id = CODEC_ID_PCM_S32LE; break; + case CODEC_ID_PCM_F32BE: + st->codec->codec_id = CODEC_ID_PCM_F32LE; + break; + case CODEC_ID_PCM_F64BE: + st->codec->codec_id = CODEC_ID_PCM_F64LE; + break; default: break; } |