libavcodec/opus: Fix spelling in error message

This commit is contained in:
Michael Graczyk 2016-09-01 11:24:31 -07:00 committed by Lou Logan
parent f66abefefe
commit 5d054a1ac4
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ av_cold int ff_opus_parse_extradata(AVCodecContext *avctx,
channels = avctx->extradata ? extradata[9] : (avctx->channels == 1) ? 1 : 2;
if (!channels) {
av_log(avctx, AV_LOG_ERROR, "Zero channel count specified in the extadata\n");
av_log(avctx, AV_LOG_ERROR, "Zero channel count specified in the extradata\n");
return AVERROR_INVALIDDATA;
}