You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/cavsdec: Fix error message
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -505,7 +505,7 @@ static inline int get_ue_code(GetBitContext *gb, int order)
|
|||||||
{
|
{
|
||||||
unsigned ret = get_ue_golomb(gb);
|
unsigned ret = get_ue_golomb(gb);
|
||||||
if (ret >= ((1U<<31)>>order)) {
|
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;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
if (order) {
|
if (order) {
|
||||||
|
Reference in New Issue
Block a user