OSDN Git Service

rv30: return AVERROR(EINVAL) instead of EINVAL
authorDiego Biurrun <diego@biurrun.de>
Thu, 21 Jul 2011 12:25:01 +0000 (14:25 +0200)
committerDiego Biurrun <diego@biurrun.de>
Thu, 21 Jul 2011 12:26:06 +0000 (14:26 +0200)
On some platforms EINVAL could be positive, ensure we return negative values.

libavcodec/rv30.c

index e047c82..17ea801 100644 (file)
@@ -256,7 +256,7 @@ static av_cold int rv30_decode_init(AVCodecContext *avctx)
     if(avctx->extradata_size - 8 < (r->rpr - 1) * 2){
         av_log(avctx, AV_LOG_ERROR, "Insufficient extradata - need at least %d bytes, got %d\n",
                6 + r->rpr * 2, avctx->extradata_size);
-        return EINVAL;
+        return AVERROR(EINVAL);
     }
     r->parse_slice_header = rv30_parse_slice_header;
     r->decode_intra_types = rv30_decode_intra_types;