mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Nellymoser 8KHZ flv muxing fix, patch by Alexander Wichers development at wichersdot nu
Originally committed as revision 15633 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
88cb61bb0c
commit
8ddd280d2d
@ -103,7 +103,11 @@ static int get_audio_flags(AVCodecContext *enc){
|
||||
flags |= FLV_CODECID_ADPCM | FLV_SAMPLESSIZE_16BIT;
|
||||
break;
|
||||
case CODEC_ID_NELLYMOSER:
|
||||
flags |= FLV_CODECID_NELLYMOSER | FLV_SAMPLESSIZE_16BIT;
|
||||
if (enc->sample_rate == 8000) {
|
||||
flags |= FLV_CODECID_NELLYMOSER_8KHZ_MONO | FLV_SAMPLESSIZE_16BIT;
|
||||
} else {
|
||||
flags |= FLV_CODECID_NELLYMOSER | FLV_SAMPLESSIZE_16BIT;
|
||||
}
|
||||
break;
|
||||
case 0:
|
||||
flags |= enc->codec_tag<<4;
|
||||
|
Loading…
Reference in New Issue
Block a user