From: Vittorio Giovara <vittorio.giov...@gmail.com> Signed-off-by: Vittorio Giovara <vittorio.giov...@gmail.com> Signed-off-by: Anton Khirnov <an...@khirnov.net> Signed-off-by: James Almer <jamr...@gmail.com> --- libavformat/vqf.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/libavformat/vqf.c b/libavformat/vqf.c index 76131cdc55..d6e4016bc8 100644 --- a/libavformat/vqf.c +++ b/libavformat/vqf.c @@ -136,12 +136,13 @@ static int vqf_read_header(AVFormatContext *s) return AVERROR_INVALIDDATA; avio_read(s->pb, comm_chunk, 12); - st->codecpar->channels = AV_RB32(comm_chunk ) + 1; + st->codecpar->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC; + st->codecpar->ch_layout.nb_channels = AV_RB32(comm_chunk) + 1; read_bitrate = AV_RB32(comm_chunk + 4); rate_flag = AV_RB32(comm_chunk + 8); avio_skip(s->pb, len-12); - if (st->codecpar->channels <= 0) { + if (st->codecpar->ch_layout.nb_channels <= 0) { av_log(s, AV_LOG_ERROR, "Invalid number of channels\n"); return AVERROR_INVALIDDATA; } @@ -192,15 +193,15 @@ static int vqf_read_header(AVFormatContext *s) break; } - if (read_bitrate / st->codecpar->channels < 8 || - read_bitrate / st->codecpar->channels > 48) { + if (read_bitrate / st->codecpar->ch_layout.nb_channels < 8 || + read_bitrate / st->codecpar->ch_layout.nb_channels > 48) { av_log(s, AV_LOG_ERROR, "Invalid bitrate per channel %d\n", - read_bitrate / st->codecpar->channels); + read_bitrate / st->codecpar->ch_layout.nb_channels); return AVERROR_INVALIDDATA; } switch (((st->codecpar->sample_rate/1000) << 8) + - read_bitrate/st->codecpar->channels) { + read_bitrate/st->codecpar->ch_layout.nb_channels) { case (11<<8) + 8 : case (8 <<8) + 8 : case (11<<8) + 10: -- 2.34.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".