# HG changeset patch # User reimar # Date 1331405159 0 # Node ID 8ef6e54892fa524a508b76dd918a8c8304ded262 # Parent 12a8828549cd44524c90fb0f0dc346020c86fcdf Ensure the AVDictionary is initialized. diff -r 12a8828549cd -r 8ef6e54892fa libmpcodecs/vf_mcdeint.c --- a/libmpcodecs/vf_mcdeint.c Sat Mar 10 10:23:42 2012 +0000 +++ b/libmpcodecs/vf_mcdeint.c Sat Mar 10 18:45:59 2012 +0000 @@ -186,7 +186,7 @@ for(i=0; i<3; i++){ AVCodecContext *avctx_enc; - AVDictionary *opts; + AVDictionary *opts = NULL; #if 0 int is_chroma= !!i; int w= ((width + 31) & (~31))>>is_chroma;