Commit e9509536 authored by Benjamin Larsson's avatar Benjamin Larsson

Set FLV_SAMPLESSIZE_16BIT for ADPCM.

Originally committed as revision 8201 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 43a498f2
......@@ -91,7 +91,7 @@ static int get_audio_flags(AVCodecContext *enc){
flags |= FLV_CODECID_PCM_LE | FLV_SAMPLESSIZE_16BIT;
break;
case CODEC_ID_ADPCM_SWF:
flags |= FLV_CODECID_ADPCM;
flags |= FLV_CODECID_ADPCM | FLV_SAMPLESSIZE_16BIT;
break;
case 0:
flags |= enc->codec_tag<<4;
......
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