Commit c6fcd2ae authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avcodec/cavsdec: Fix error message

Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 799e1285
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment