avcodec/cavsdec: Fix error message

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-02-08 12:32:53 +01:00
parent 799e128562
commit c6fcd2ae36
1 changed files with 1 additions and 1 deletions

View File

@ -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) {