diff mbox

[FFmpeg-devel] libavcodec/opus: Fix spelling in error message

Message ID 1472754271-17487-1-git-send-email-mgraczyk@google.com
State Accepted
Commit 5d054a1ac45248db9fd9ba4ea192147ad35aa54c
Headers show

Commit Message

Michael Graczyk Sept. 1, 2016, 6:24 p.m. UTC
From: Michael Graczyk <mgraczyk@google.com>

---
 libavcodec/opus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Lou Logan Sept. 1, 2016, 6:35 p.m. UTC | #1
On Thu,  1 Sep 2016 11:24:31 -0700, mgraczyk-at-google.com@ffmpeg.org
wrote:

> From: Michael Graczyk <mgraczyk@google.com>
> 
> ---
>  libavcodec/opus.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/opus.c b/libavcodec/opus.c
> index 703d2e8..29854fc 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;
>      }
>  

Pushed. Thanks.
diff mbox

Patch

diff --git a/libavcodec/opus.c b/libavcodec/opus.c
index 703d2e8..29854fc 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;
     }