Browse Source

support transcoding adpcm

Originally committed as revision 4689 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Beregszaszi 19 years ago
parent
commit
2fde8aaeba
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/flvenc.c

+ 3
- 0
libavformat/flvenc.c View File

@@ -65,6 +65,9 @@ static int get_audio_flags(AVCodecContext *enc){
case CODEC_ID_PCM_S16LE:
flags |= 0x2;
break;
case CODEC_ID_ADPCM_SWF:
flags |= 0x10;
break;
case 0:
flags |= enc->codec_tag<<4;
break;


Loading…
Cancel
Save