diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 18:24:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 18:24:39 +0000 |
commit | 339cdf9681bfe58140d254764c17b08aa87fc8a2 (patch) | |
tree | e54921783339d5f133a1ad0450e2254144c3e69d | |
parent | 16a5f4caa95acb000ae9fc12ec228258b5b18564 (diff) | |
download | ffmpeg-339cdf9681bfe58140d254764c17b08aa87fc8a2.tar.gz |
Remove useless init from ff_mpeg4_set_direct_mv() found by CSA.
Originally committed as revision 18583 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 7c7a82e577..862e98c1eb 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -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 |