Skip to content
Snippets Groups Projects
Commit 5d054a1a authored by Michael Graczyk's avatar Michael Graczyk Committed by Lou Logan
Browse files

libavcodec/opus: Fix spelling in error message

parent f66abefe
No related branches found
No related tags found
No related merge requests found
...@@ -328,7 +328,7 @@ av_cold int ff_opus_parse_extradata(AVCodecContext *avctx, ...@@ -328,7 +328,7 @@ av_cold int ff_opus_parse_extradata(AVCodecContext *avctx,
channels = avctx->extradata ? extradata[9] : (avctx->channels == 1) ? 1 : 2; channels = avctx->extradata ? extradata[9] : (avctx->channels == 1) ? 1 : 2;
if (!channels) { 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; return AVERROR_INVALIDDATA;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment