Commit bd881c41 authored by alex's avatar alex

support transcoding adpcm


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4689 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e84d167c
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment