Commit eac3a902 authored by James Almer's avatar James Almer

libmodplug: convert to new channel layout API

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent d85b577f
......@@ -238,7 +238,7 @@ static int modplug_read_header(AVFormatContext *s)
st->duration = ModPlug_GetLength(modplug->f);
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
st->codecpar->channels = settings.mChannels;
st->codecpar->ch_layout.nb_channels = settings.mChannels;
st->codecpar->sample_rate = settings.mFrequency;
// timebase = 1/1000, 2ch 16bits 44.1kHz-> 2*2*44100
......
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