Merge commit '711c970168297683860422e95d6b7e37ee3c8367'
* commit '711c970168297683860422e95d6b7e37ee3c8367':
rv34: Check the return value from ff_rv34_decode_init
Conflicts:
libavcodec/rv30.c
libavcodec/rv40.c
See: b86651a208
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -550,8 +550,7 @@ static av_cold int rv40_decode_init(AVCodecContext *avctx)
|
||||
int ret;
|
||||
|
||||
r->rv30 = 0;
|
||||
ret = ff_rv34_decode_init(avctx);
|
||||
if (ret < 0)
|
||||
if ((ret = ff_rv34_decode_init(avctx)) < 0)
|
||||
return ret;
|
||||
if(!aic_top_vlc.bits)
|
||||
rv40_init_tables();
|
||||
|
Reference in New Issue
Block a user