Mercurial > libavcodec.hg
changeset 11270:f64dd8297105 libavcodec
ff_msmpeg4_decode_init() calls ff_h263_decode_init() which calls
MPV_common_init(), so calling both is redundant and leads to memory
leaks in WMV3/VC-1 decoder. Thus use only the first function in
WMV3/VC-1 decoder initialization.
author | kostya |
---|---|
date | Wed, 24 Feb 2010 13:11:38 +0000 |
parents | fc001a3aa390 |
children | bf3436efe037 |
files | vc1dec.c |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/vc1dec.c Wed Feb 24 11:51:42 2010 +0000 +++ b/vc1dec.c Wed Feb 24 13:11:38 2010 +0000 @@ -2994,11 +2994,9 @@ avctx->idct_algo=FF_IDCT_WMV2; } - if(ff_h263_decode_init(avctx) < 0) + if(ff_msmpeg4_decode_init(avctx) < 0) return -1; if (vc1_init_common(v) < 0) return -1; - // only for ff_msmp4_mb_i_table - if (ff_msmpeg4_decode_init(avctx) < 0) return -1; avctx->coded_width = avctx->width; avctx->coded_height = avctx->height;