[FFmpeg-devel] [PATCH 15/16] avcodec/eatqi: Return more specific	error code from tqi_decode_mb()
    Michael Niedermayer 
    michael at niedermayer.cc
       
    Mon Dec 31 20:22:45 EET 2018
    
    
  
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
 libavcodec/eatqi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/eatqi.c b/libavcodec/eatqi.c
index 1a847a35da..0002d45457 100644
--- a/libavcodec/eatqi.c
+++ b/libavcodec/eatqi.c
@@ -83,7 +83,7 @@ static int tqi_decode_mb(TqiContext *t, int16_t (*block)[64])
         if (ret < 0) {
             av_log(t->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n",
                    t->mb_x, t->mb_y);
-            return -1;
+            return ret;
         }
     }
 
-- 
2.20.1
    
    
More information about the ffmpeg-devel
mailing list