comparison avcodec.h @ 1782:82c182e52a54 libavcodec

remove incorect motion estimation table
author michael
date Thu, 05 Feb 2004 00:35:08 +0000
parents 9848ca4ad861
children 66ae3c109d90
comparison
equal deleted inserted replaced
1781:bbb6e7667671 1782:82c182e52a54
15 #include "rational.h" 15 #include "rational.h"
16 #include <sys/types.h> /* size_t */ 16 #include <sys/types.h> /* size_t */
17 17
18 #define FFMPEG_VERSION_INT 0x000408 18 #define FFMPEG_VERSION_INT 0x000408
19 #define FFMPEG_VERSION "0.4.8" 19 #define FFMPEG_VERSION "0.4.8"
20 #define LIBAVCODEC_BUILD 4700 20 #define LIBAVCODEC_BUILD 4701
21 21
22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
23 #define LIBAVCODEC_VERSION FFMPEG_VERSION 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION
24 24
25 #define AV_STRINGIFY(s) AV_TOSTRING(s) 25 #define AV_STRINGIFY(s) AV_TOSTRING(s)
220 float quality_factor; 220 float quality_factor;
221 } RcOverride; 221 } RcOverride;
222 222
223 /* only for ME compatiblity with old apps */ 223 /* only for ME compatiblity with old apps */
224 extern int motion_estimation_method; 224 extern int motion_estimation_method;
225
226 /* ME algos sorted by quality */
227 //FIXME remove IMHO
228 static const __attribute__((unused)) int Motion_Est_QTab[] =
229 { ME_ZERO, ME_PHODS, ME_LOG, ME_X1, ME_EPZS, ME_FULL };
230
231 225
232 #define FF_MAX_B_FRAMES 8 226 #define FF_MAX_B_FRAMES 8
233 227
234 /* encoding support 228 /* encoding support
235 these flags can be passed in AVCodecContext.flags before initing 229 these flags can be passed in AVCodecContext.flags before initing