Mercurial > libavformat.hg
changeset 4006:cf359952a1fc libavformat
force sample rate to 16khz for speex in flv, fix speexaudio.flv
author | bcoudurier |
---|---|
date | Fri, 24 Oct 2008 18:36:26 +0000 |
parents | 476a5d7182db |
children | d5eb96f97305 |
files | flvdec.c |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/flvdec.c Fri Oct 24 16:46:43 2008 +0000 +++ b/flvdec.c Fri Oct 24 18:36:26 2008 +0000 @@ -53,7 +53,10 @@ acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_S8 : CODEC_ID_PCM_S16LE; break; case FLV_CODECID_AAC : acodec->codec_id = CODEC_ID_AAC; break; case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF; break; - case FLV_CODECID_SPEEX: acodec->codec_id = CODEC_ID_SPEEX; break; + case FLV_CODECID_SPEEX: + acodec->codec_id = CODEC_ID_SPEEX; + acodec->sample_rate = 16000; + break; case FLV_CODECID_MP3 : acodec->codec_id = CODEC_ID_MP3 ; astream->need_parsing = AVSTREAM_PARSE_FULL; break; case FLV_CODECID_NELLYMOSER_8KHZ_MONO: acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate