support transcoding adpcm

Originally committed as revision 4689 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2005-11-12 20:01:23 +00:00
parent ea15df8048
commit 2fde8aaeba
1 changed files with 3 additions and 0 deletions

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;