Commit 339cdf96 authored by Michael Niedermayer's avatar Michael Niedermayer

Remove useless init from ff_mpeg4_set_direct_mv() found by CSA.

Originally committed as revision 18583 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 16a5f4ca
......@@ -635,8 +635,8 @@ static inline void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx, int my,
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment