Mercurial > libavcodec.hg
changeset 9484:fb240cb99bcf libavcodec
Remove useless init from ff_mpeg4_set_direct_mv() found by CSA.
author | michael |
---|---|
date | Fri, 17 Apr 2009 18:24:39 +0000 |
parents | 5e27a38aeb81 |
children | 90d4d9708969 |
files | h263.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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