summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/flvenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c
index 82485ceff8..0b09d98308 100644
--- a/libavformat/flvenc.c
+++ b/libavformat/flvenc.c
@@ -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;