mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
ape: 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
577022b09c
commit
f4a71eec32
1 changed files with 1 additions and 1 deletions
|
|
@ -331,7 +331,7 @@ static int ape_read_header(AVFormatContext * s)
|
|||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_APE;
|
||||
st->codecpar->codec_tag = MKTAG('A', 'P', 'E', ' ');
|
||||
st->codecpar->channels = ape->channels;
|
||||
st->codecpar->ch_layout.nb_channels = ape->channels;
|
||||
st->codecpar->sample_rate = ape->samplerate;
|
||||
st->codecpar->bits_per_coded_sample = ape->bps;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue