mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01: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:
parent
279919ef8d
commit
fbd6e2bab4
1 changed files with 2 additions and 2 deletions
|
|
@ -290,10 +290,10 @@ static const int32_t dss_sp_sinc[67] = {
|
|||
static av_cold int dss_sp_decode_init(AVCodecContext *avctx)
|
||||
{
|
||||
DssSpContext *p = avctx->priv_data;
|
||||
avctx->channel_layout = AV_CH_LAYOUT_MONO;
|
||||
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
|
||||
avctx->channels = 1;
|
||||
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->avctx = avctx;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue