]> git.sesse.net Git - ffmpeg/commitdiff
amrwbdec: set channels, channel_layout, and sample_rate
authorJustin Ruggles <justin.ruggles@gmail.com>
Mon, 8 Oct 2012 01:19:28 +0000 (21:19 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 1 Nov 2012 15:29:14 +0000 (11:29 -0400)
Only mono 16kHz is supported.

libavcodec/amrwbdec.c

index c9c793fb4a2db40f1678a20176f205a7e62e9755..9b0fe255b4578ec58ccb49b305cda48777614238 100644 (file)
@@ -24,6 +24,7 @@
  * AMR wideband decoder
  */
 
+#include "libavutil/audioconvert.h"
 #include "libavutil/common.h"
 #include "libavutil/lfg.h"
 
@@ -90,7 +91,15 @@ static av_cold int amrwb_decode_init(AVCodecContext *avctx)
     AMRWBContext *ctx = avctx->priv_data;
     int i;
 
-    avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
+    if (avctx->channels > 1) {
+        av_log_missing_feature(avctx, "multi-channel AMR", 0);
+        return AVERROR_PATCHWELCOME;
+    }
+
+    avctx->channels       = 1;
+    avctx->channel_layout = AV_CH_LAYOUT_MONO;
+    avctx->sample_rate    = 16000;
+    avctx->sample_fmt     = AV_SAMPLE_FMT_FLT;
 
     av_lfg_init(&ctx->prng, 1);