# HG changeset patch # User michael # Date 1239992679 0 # Node ID fb240cb99bcf6b2df49dfb8eba575c774c6797c4 # Parent 5e27a38aeb81c113c07c1f6a8fa44189ed58bdf8 Remove useless init from ff_mpeg4_set_direct_mv() found by CSA. diff -r 5e27a38aeb81 -r fb240cb99bcf h263.c --- a/h263.c Fri Apr 17 18:22:19 2009 +0000 +++ b/h263.c Fri Apr 17 18:24:39 2009 +0000 @@ -635,8 +635,8 @@ int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my){ const int mb_index= s->mb_x + s->mb_y*s->mb_stride; const int colocated_mb_type= s->next_picture.mb_type[mb_index]; - uint16_t time_pp= s->pp_time; - uint16_t time_pb= s->pb_time; + uint16_t time_pp; + uint16_t time_pb; int i; //FIXME avoid divides