From 4e0819310e2d2eff60be2d6df28335f0739712b9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 1 Jul 2015 15:38:19 +0100 Subject: [PATCH] elsdec: Replace EOVERFLOW with INVALIDDATA EOVERFLOW is not available on all platforms. Signed-off-by: Michael Niedermayer --- libavcodec/elsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/elsdec.c b/libavcodec/elsdec.c index 5e89045864..10a1a9d5e8 100644 --- a/libavcodec/elsdec.c +++ b/libavcodec/elsdec.c @@ -362,7 +362,7 @@ unsigned ff_els_decode_unsigned(ElsDecCtx *ctx, ElsUnsignedRung *ur) /* handle the error/overflow case */ if (ctx->err || n >= ELS_EXPGOLOMB_LEN) { - ctx->err = AVERROR(EOVERFLOW); + ctx->err = AVERROR_INVALIDDATA; return 0; }