diff isom.c @ 5390:9bf0eaa769dc libavformat

support pcm_f32/64le in mov
author bcoudurier
date Sun, 29 Nov 2009 02:27:08 +0000
parents 13cd610e6ed4
children 3f4dbd1e6548
line wrap: on
line diff
--- a/isom.c	Sun Nov 29 02:04:44 2009 +0000
+++ b/isom.c	Sun Nov 29 02:27:08 2009 +0000
@@ -185,7 +185,9 @@
     { 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 */