mirror of https://git.ffmpeg.org/ffmpeg.git
g729: 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
972763ef45
commit
201d6c1355
|
@ -43,7 +43,7 @@ static int g729_read_header(AVFormatContext *s)
|
|||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_G729;
|
||||
st->codecpar->sample_rate = 8000;
|
||||
st->codecpar->channels = 1;
|
||||
st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
|
||||
|
||||
if (s1 && s1->bit_rate)
|
||||
s->bit_rate = s1->bit_rate;
|
||||
|
|
Loading…
Reference in New Issue