aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-08 12:32:53 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-11 19:38:41 +0100
commitc6fcd2ae365608a3f8dc79704b30e3762f2ca2cc (patch)
treecc41366f3579c9baac6b3888a84d8344336520d9
parent799e128562fd56f622189d45a1743d256a97ea02 (diff)
downloadffmpeg-c6fcd2ae365608a3f8dc79704b30e3762f2ca2cc.tar.gz
avcodec/cavsdec: Fix error message
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/cavsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c
index da9aa94deb..6f4856ce97 100644
--- a/libavcodec/cavsdec.c
+++ b/libavcodec/cavsdec.c
@@ -505,7 +505,7 @@ static inline int get_ue_code(GetBitContext *gb, int order)
{
unsigned ret = get_ue_golomb(gb);
if (ret >= ((1U<<31)>>order)) {
- av_log(NULL, AV_LOG_ERROR, "get_ue_code: value too larger\n");
+ av_log(NULL, AV_LOG_ERROR, "get_ue_code: value too large\n");
return AVERROR_INVALIDDATA;
}
if (order) {