hcom: convert to new channel layout API

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Anton Khirnov 2019-05-29 09:36:27 +02:00 committed by James Almer
parent b5b18440f1
commit b14fa1b95d
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ static av_cold int hcom_init(AVCodecContext *avctx)
{
HCOMContext *s = avctx->priv_data;
if (avctx->channels != 1) {
if (avctx->ch_layout.nb_channels != 1) {
av_log(avctx, AV_LOG_ERROR, "invalid number of channels\n");
return AVERROR_INVALIDDATA;
}