mirror of https://git.ffmpeg.org/ffmpeg.git
sndio: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
360fac0045
commit
6f1a9effef
|
@ -49,7 +49,7 @@ static av_cold int audio_read_header(AVFormatContext *s1)
|
|||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = s->codec_id;
|
||||
st->codecpar->sample_rate = s->sample_rate;
|
||||
st->codecpar->channels = s->channels;
|
||||
st->codecpar->ch_layout.nb_channels = s->channels;
|
||||
|
||||
avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ static av_cold int audio_write_header(AVFormatContext *s1)
|
|||
|
||||
st = s1->streams[0];
|
||||
s->sample_rate = st->codecpar->sample_rate;
|
||||
s->channels = st->codecpar->channels;
|
||||
s->channels = st->codecpar->ch_layout.nb_channels;
|
||||
|
||||
ret = ff_sndio_open(s1, 1, s1->url);
|
||||
|
||||
|
|
Loading…
Reference in New Issue