1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

dss_sp: convert to new channel layout API

Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Vittorio Giovara
2017-03-29 18:23:04 +02:00
committed by James Almer
parent 279919ef8d
commit fbd6e2bab4

View File

@@ -290,10 +290,10 @@ static const int32_t dss_sp_sinc[67] = {
static av_cold int dss_sp_decode_init(AVCodecContext *avctx) static av_cold int dss_sp_decode_init(AVCodecContext *avctx)
{ {
DssSpContext *p = avctx->priv_data; DssSpContext *p = avctx->priv_data;
avctx->channel_layout = AV_CH_LAYOUT_MONO;
avctx->sample_fmt = AV_SAMPLE_FMT_S16; avctx->sample_fmt = AV_SAMPLE_FMT_S16;
avctx->channels = 1;
avctx->sample_rate = 11025; avctx->sample_rate = 11025;
av_channel_layout_uninit(&avctx->ch_layout);
avctx->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
p->pulse_dec_mode = 1; p->pulse_dec_mode = 1;
p->avctx = avctx; p->avctx = avctx;