Commit 32c7769e authored by Justin Ruggles's avatar Justin Ruggles

gsmdec: always set channel layout and sample rate at initialization

Only mono 8kHz is supported.
parent c5b8acad
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
* GSM decoder * GSM decoder
*/ */
#include "libavutil/audioconvert.h"
#include "avcodec.h" #include "avcodec.h"
#include "get_bits.h" #include "get_bits.h"
#include "msgsmdec.h" #include "msgsmdec.h"
...@@ -34,10 +35,10 @@ static av_cold int gsm_init(AVCodecContext *avctx) ...@@ -34,10 +35,10 @@ static av_cold int gsm_init(AVCodecContext *avctx)
{ {
GSMContext *s = avctx->priv_data; GSMContext *s = avctx->priv_data;
avctx->channels = 1; avctx->channels = 1;
if (!avctx->sample_rate) avctx->channel_layout = AV_CH_LAYOUT_MONO;
avctx->sample_rate = 8000; avctx->sample_rate = 8000;
avctx->sample_fmt = AV_SAMPLE_FMT_S16; avctx->sample_fmt = AV_SAMPLE_FMT_S16;
switch (avctx->codec_id) { switch (avctx->codec_id) {
case AV_CODEC_ID_GSM: case AV_CODEC_ID_GSM:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment