diff options
author | Michael Graczyk <mgraczyk@google.com> | 2016-09-01 11:24:31 -0700 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2016-09-01 10:29:08 -0800 |
commit | 5d054a1ac45248db9fd9ba4ea192147ad35aa54c (patch) | |
tree | e0e008793a543631dfddbfd8a07d4b3e250ff590 /libavcodec/opus.c | |
parent | f66abefefecfb7fb08bf5ec6f79d8c558a043d29 (diff) | |
download | ffmpeg-5d054a1ac45248db9fd9ba4ea192147ad35aa54c.tar.gz |
libavcodec/opus: Fix spelling in error message
Diffstat (limited to 'libavcodec/opus.c')
-rw-r--r-- | libavcodec/opus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opus.c b/libavcodec/opus.c index 703d2e86b0..29854fcca5 100644 --- a/libavcodec/opus.c +++ b/libavcodec/opus.c @@ -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; } |