Module: libav
Branch: master
Commit: 4e0819310e2d2eff60be2d6df28335f0739712b9

Author:    Michael Niedermayer <[email protected]>
Committer: Vittorio Giovara <[email protected]>
Date:      Wed Jul  1 15:38:19 2015 +0100

elsdec: Replace EOVERFLOW with INVALIDDATA

EOVERFLOW is not available on all platforms.

Signed-off-by: Michael Niedermayer <[email protected]>

---

 libavcodec/elsdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/elsdec.c b/libavcodec/elsdec.c
index 5e89045..10a1a9d 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;
     }
 

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to