Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
Originally committed as revision 3717 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:

committed by
Michael Niedermayer

parent
8a6cb11455
commit
073c2593c9
@@ -518,10 +518,10 @@ static int rv10_decode_init(AVCodecContext *avctx)
|
||||
if (!done) {
|
||||
init_vlc(&rv_dc_lum, DC_VLC_BITS, 256,
|
||||
rv_lum_bits, 1, 1,
|
||||
rv_lum_code, 2, 2);
|
||||
rv_lum_code, 2, 2, 1);
|
||||
init_vlc(&rv_dc_chrom, DC_VLC_BITS, 256,
|
||||
rv_chrom_bits, 1, 1,
|
||||
rv_chrom_code, 2, 2);
|
||||
rv_chrom_code, 2, 2, 1);
|
||||
done = 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user