[FFmpeg-cvslog] avcodec/liblc3dec: fix typo in macro name, fix compilation

Antoine SOULIER git at videolan.org
Sat Apr 6 10:56:26 EEST 2024


ffmpeg | branch: master | Antoine SOULIER <asoulier at google.com> | Sat Apr  6 09:29:45 2024 +0200| [ad3fcfd0f2858126dc60334c9e6f4ffa7d8aec21] | committer: Stefano Sabatini

avcodec/liblc3dec: fix typo in macro name, fix compilation

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ad3fcfd0f2858126dc60334c9e6f4ffa7d8aec21
---

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

diff --git a/libavcodec/liblc3dec.c b/libavcodec/liblc3dec.c
index 90da28679b..7059808acb 100644
--- a/libavcodec/liblc3dec.c
+++ b/libavcodec/liblc3dec.c
@@ -49,7 +49,7 @@ static av_cold int liblc3_decode_init(AVCodecContext *avctx)
     if (channels < 0 || channels > DECODER_MAX_CHANNELS) {
         av_log(avctx, AV_LOG_ERROR,
                "Invalid number of channels %d. Max %d channels are accepted\n",
-               channels, DECODER_MAX_CHANNES);
+               channels, DECODER_MAX_CHANNELS);
         return AVERROR(EINVAL);
     }
 



More information about the ffmpeg-cvslog mailing list