diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-11-29 02:27:08 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-11-29 02:27:08 +0000 |
commit | 7c4b7d0f41646039fcbda6a8093a25d493f084ff (patch) | |
tree | 659a97dac6eced6727cfdb2fa5032d33d960b048 /libavformat/isom.c | |
parent | ba7c0ece6160a7a49b188d4a9fce0cf1b71bece0 (diff) | |
download | ffmpeg-7c4b7d0f41646039fcbda6a8093a25d493f084ff.tar.gz |
support pcm_f32/64le in mov
Originally committed as revision 20649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index ae16532e30..714b6ebc7d 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -185,7 +185,9 @@ const AVCodecTag codec_movaudio_tags[] = { { CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') }, /* */ { CODEC_ID_PCM_S16LE, MKTAG('l', 'p', 'c', 'm') }, { CODEC_ID_PCM_F32BE, MKTAG('f', 'l', '3', '2') }, + { CODEC_ID_PCM_F32LE, MKTAG('f', 'l', '3', '2') }, { CODEC_ID_PCM_F64BE, MKTAG('f', 'l', '6', '4') }, + { CODEC_ID_PCM_F64LE, MKTAG('f', 'l', '6', '4') }, { CODEC_ID_PCM_S8, MKTAG('s', 'o', 'w', 't') }, { CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */ { CODEC_ID_PCM_U8, MKTAG('N', 'O', 'N', 'E') }, /* uncompressed */ |