summaryrefslogtreecommitdiff
path: root/libavcodec/motion_est.c
diff options
context:
space:
mode:
authorDominik Mierzejewski <dominik@rangers.eu.org>2002-08-28 08:15:30 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-08-28 08:15:30 +0000
commit077871863579cc3d7c04604bec3f9f075fddc0e7 (patch)
tree19c6fd198e37803061471164e87bad4d82fd010c /libavcodec/motion_est.c
parent1b78558a9c344c7df9ca89d37c984ce4d276c32c (diff)
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
Originally committed as revision 872 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r--libavcodec/motion_est.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c
index d672642fd8..295163898d 100644
--- a/libavcodec/motion_est.c
+++ b/libavcodec/motion_est.c
@@ -1399,7 +1399,7 @@ static inline int direct_search(MpegEncContext * s,
int mx, my, mx2, my2;
uint8_t *ref_picture= s->me_scratchpad - (mb_x - 1 + (mb_y - 1)*s->linesize)*16;
int16_t (*mv_table)[2]= s->b_direct_mv_table;
- uint16_t *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame
+/* uint16_t *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; */ // f_code of the prev frame
/* thanks to iso-mpeg the rounding is different for the zero vector, so we need to handle that ... */
motion_fx= (motion_px*time_pb)/time_pp;