diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 22:28:41 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 22:28:41 +0000 |
commit | 802f454e5bf2657c3b95c364b474625539a29cd4 (patch) | |
tree | 70a8fd9f50f3e1affce5976ed9e808ed33bdeadc /libavcodec/motion_est.c | |
parent | acaa20d7bda312362c743f4bc5fb5a51f63c3720 (diff) | |
download | ffmpeg-802f454e5bf2657c3b95c364b474625539a29cd4.tar.gz |
removed unused variable
Originally committed as revision 2162 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r-- | libavcodec/motion_est.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 505a97d83d..71f685e786 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -393,6 +393,7 @@ void ff_init_me(MpegEncContext *s){ } } +#if 0 static int pix_dev(uint8_t * pix, int line_size, int mean) { int s, i, j; @@ -414,6 +415,7 @@ static int pix_dev(uint8_t * pix, int line_size, int mean) } return s; } +#endif static inline void no_motion_search(MpegEncContext * s, int *mx_ptr, int *my_ptr) |