summaryrefslogtreecommitdiff
path: root/libavformat/astdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-05-13 11:11:26 +0200
committerJames Almer <jamrial@gmail.com>2022-03-15 09:42:30 -0300
commit820d73cc0e8368f66849e3d5006844dbdb1f2775 (patch)
tree1d8cd2f18d06f55849469d0a833c2d0b9e5fb579 /libavformat/astdec.c
parent521cca1333852cc46682cc78d40ae51d10bc14a5 (diff)
ast: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/astdec.c')
-rw-r--r--libavformat/astdec.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/libavformat/astdec.c b/libavformat/astdec.c
index 629372acf1..f812f6437c 100644
--- a/libavformat/astdec.c
+++ b/libavformat/astdec.c
@@ -57,14 +57,14 @@ static int ast_read_header(AVFormatContext *s)
return AVERROR_INVALIDDATA;
}
- st->codecpar->channels = avio_rb16(s->pb);
- if (!st->codecpar->channels)
+ st->codecpar->ch_layout.nb_channels = avio_rb16(s->pb);
+ if (!st->codecpar->ch_layout.nb_channels)
return AVERROR_INVALIDDATA;
- if (st->codecpar->channels == 2)
- st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
- else if (st->codecpar->channels == 4)
- st->codecpar->channel_layout = AV_CH_LAYOUT_4POINT0;
+ if (st->codecpar->ch_layout.nb_channels == 2)
+ st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO;
+ else if (st->codecpar->ch_layout.nb_channels == 4)
+ st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_4POINT0;
avio_skip(s->pb, 2);
st->codecpar->sample_rate = avio_rb32(s->pb);
@@ -90,10 +90,11 @@ static int ast_read_packet(AVFormatContext *s, AVPacket *pkt)
pos = avio_tell(s->pb);
type = avio_rl32(s->pb);
size = avio_rb32(s->pb);
- if (!s->streams[0]->codecpar->channels || size > INT_MAX / s->streams[0]->codecpar->channels)
+ if (!s->streams[0]->codecpar->ch_layout.nb_channels ||
+ size > INT_MAX / s->streams[0]->codecpar->ch_layout.nb_channels)
return AVERROR_INVALIDDATA;
- size *= s->streams[0]->codecpar->channels;
+ size *= s->streams[0]->codecpar->ch_layout.nb_channels;
if ((ret = avio_skip(s->pb, 24)) < 0) // padding
return ret;