Browse Source

libopencore-amr: allow sampling rates other than 8khz

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
b30f4510d8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libopencore-amr.c

+ 1
- 1
libavcodec/libopencore-amr.c View File

@@ -193,7 +193,7 @@ static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
{
AMRContext *s = avctx->priv_data;

if (avctx->sample_rate != 8000) {
if (avctx->sample_rate != 8000 && avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) {
av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n");
return AVERROR(ENOSYS);
}


Loading…
Cancel
Save