diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-17 14:05:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-17 14:20:52 +0200 |
commit | fc096e2e861e821a743bf9c42abee0fb41fff5d6 (patch) | |
tree | 5ed26fecc643595b7629f4cdff51546c37f3a162 /libavcodec/rv30.c | |
parent | 15285d8fc528483aebf4ae7c522ea33c558f503c (diff) | |
download | ffmpeg-fc096e2e861e821a743bf9c42abee0fb41fff5d6.tar.gz |
Revert "Do not decode RV30 files if the extradata is too small"
This commit is plain wrong, theres no reason to error out at this point nor is the
error value guranteed to be negative as it should be
This reverts commit 289c60001fb0a9a1d7a97c876d8a42b84c6874ac.
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r-- | libavcodec/rv30.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c index c36bf44e8e..cd11079d52 100644 --- a/libavcodec/rv30.c +++ b/libavcodec/rv30.c @@ -256,7 +256,6 @@ 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; } r->parse_slice_header = rv30_parse_slice_header; r->decode_intra_types = rv30_decode_intra_types; |