mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
flvenc: Support muxing 16 kHz nellymoser
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
055c61b857
commit
bd2ff1a8bc
1 changed files with 3 additions and 0 deletions
|
|
@ -90,6 +90,7 @@ static int get_audio_flags(AVCodecContext *enc){
|
|||
case 11025:
|
||||
flags |= FLV_SAMPLERATE_11025HZ;
|
||||
break;
|
||||
case 16000: //nellymoser only
|
||||
case 8000: //nellymoser only
|
||||
case 5512: //not mp3
|
||||
if(enc->codec_id != CODEC_ID_MP3){
|
||||
|
|
@ -125,6 +126,8 @@ static int get_audio_flags(AVCodecContext *enc){
|
|||
case CODEC_ID_NELLYMOSER:
|
||||
if (enc->sample_rate == 8000) {
|
||||
flags |= FLV_CODECID_NELLYMOSER_8KHZ_MONO | FLV_SAMPLESSIZE_16BIT;
|
||||
} else if (enc->sample_rate == 16000) {
|
||||
flags |= FLV_CODECID_NELLYMOSER_16KHZ_MONO | FLV_SAMPLESSIZE_16BIT;
|
||||
} else {
|
||||
flags |= FLV_CODECID_NELLYMOSER | FLV_SAMPLESSIZE_16BIT;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue