Fix wrong flags for S16LE and S16BE audio in FLV files.
authorAllan Hsu <allan@counterpop.net>
Fri, 1 Dec 2006 10:26:54 +0000 (10:26 +0000)
committerDiego Biurrun <diego@biurrun.de>
Fri, 1 Dec 2006 10:26:54 +0000 (10:26 +0000)
patch by Allan Hsu, allan counterpop net

Originally committed as revision 7194 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/flvenc.c

index 82485ce..0b09d98 100644 (file)
@@ -65,10 +65,10 @@ static int get_audio_flags(AVCodecContext *enc){
     case CODEC_ID_PCM_S8:
         break;
     case CODEC_ID_PCM_S16BE:
-        flags |= 0x60 | 0x2;
+        flags |= 0x2;
         break;
     case CODEC_ID_PCM_S16LE:
-        flags |= 0x2;
+        flags |= 0x30 | 0x2;
         break;
     case CODEC_ID_ADPCM_SWF:
         flags |= 0x10;