comparison mpegvideo.h @ 320:cda7d0857baf libavcodec

- ME setting moved to AVCodecContext/MpegEncContext, no longer a global. - EPZS ME algo used by default. - HQ flag activated for ffmpeg. - Cosmetics ...
author pulento
date Sun, 14 Apr 2002 18:57:51 +0000
parents 8cf5507e6ca5
children 9c6f056f0e41
comparison
equal deleted inserted replaced
319:3ef1cc75d5f5 320:cda7d0857baf
111 111
112 int f_code; /* resolution */ 112 int f_code; /* resolution */
113 int b_code; /* backward resolution for B Frames (mpeg4) */ 113 int b_code; /* backward resolution for B Frames (mpeg4) */
114 INT16 *mv_table[2]; /* MV table (1MV per MB)*/ 114 INT16 *mv_table[2]; /* MV table (1MV per MB)*/
115 INT16 (*motion_val)[2]; /* used for MV prediction (4MV per MB)*/ 115 INT16 (*motion_val)[2]; /* used for MV prediction (4MV per MB)*/
116 int full_search; 116 int me_method; /* ME algorithm */
117 int mv_dir; 117 int mv_dir;
118 #define MV_DIR_BACKWARD 1 118 #define MV_DIR_BACKWARD 1
119 #define MV_DIR_FORWARD 2 119 #define MV_DIR_FORWARD 2
120 #define MV_DIRECT 4 // bidirectional mode where the difference equals the MV of the last P/S/I-Frame (mpeg4) 120 #define MV_DIRECT 4 // bidirectional mode where the difference equals the MV of the last P/S/I-Frame (mpeg4)
121 int mv_type; 121 int mv_type;