mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:21:11 +01:00
qcp: 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
0273297405
commit
f508cb1378
1 changed files with 1 additions and 2 deletions
|
|
@ -103,8 +103,7 @@ static int qcp_read_header(AVFormatContext *s)
|
|||
avio_skip(pb, 4 + 8 + 4 + 1 + 1); // filesize + "QLCMfmt " + chunk-size + major-version + minor-version
|
||||
|
||||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->channels = 1;
|
||||
st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
|
||||
st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
|
||||
avio_read(pb, buf, 16);
|
||||
if (is_qcelp_13k_guid(buf)) {
|
||||
st->codecpar->codec_id = AV_CODEC_ID_QCELP;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue