Commit 4040b514 authored by michael's avatar michael

Remove useless init from ff_mpeg4_set_direct_mv() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18583 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7c6c84fc
......@@ -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