summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2002-04-14 18:57:51 +0000
committerJuanjo <pulento@users.sourceforge.net>2002-04-14 18:57:51 +0000
commite4986da9ce91c4a6f9e942c4225f0c3d90e5db95 (patch)
tree17a8d25051d364c09e4e878e1408a3b2f315869c /libavcodec/mpegvideo.h
parentb1ec5875a63d5cf61629ff69fb337c6d96e7b964 (diff)
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
- EPZS ME algo used by default. - HQ flag activated for ffmpeg. - Cosmetics ... Originally committed as revision 398 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index b7fe207a52..68d5bd7fde 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -113,7 +113,7 @@ typedef struct MpegEncContext {
int b_code; /* backward resolution for B Frames (mpeg4) */
INT16 *mv_table[2]; /* MV table (1MV per MB)*/
INT16 (*motion_val)[2]; /* used for MV prediction (4MV per MB)*/
- int full_search;
+ int me_method; /* ME algorithm */
int mv_dir;
#define MV_DIR_BACKWARD 1
#define MV_DIR_FORWARD 2