summaryrefslogtreecommitdiff
path: root/libavcodec/rv30.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-07-21 14:25:01 +0200
committerDiego Biurrun <diego@biurrun.de>2011-07-21 14:26:06 +0200
commite5985185d2eda942333ebbb72bd7d043ffe40be7 (patch)
tree40bf593d8c180967b2c0f738761cead0105edcee /libavcodec/rv30.c
parent371584c42bffa21991a0e0d97a03f6d42123ba1f (diff)
rv30: return AVERROR(EINVAL) instead of EINVAL
On some platforms EINVAL could be positive, ensure we return negative values.
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r--libavcodec/rv30.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c
index e047c82fe0..17ea801802 100644
--- a/libavcodec/rv30.c
+++ b/libavcodec/rv30.c
@@ -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;