diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-02-05 00:35:08 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-02-05 00:35:08 +0000 |
commit | a412a03beeb8309baf816c2ec14db85650028e47 (patch) | |
tree | 1b88a65961064a410558d9b925e61af2e4044bc1 | |
parent | 8a1f657b28024ed9c3b137baaafbf0a8737de142 (diff) | |
download | ffmpeg-a412a03beeb8309baf816c2ec14db85650028e47.tar.gz |
remove incorect motion estimation table
Originally committed as revision 2747 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b202a009a4..9b0e1a04c8 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000408 #define FFMPEG_VERSION "0.4.8" -#define LIBAVCODEC_BUILD 4700 +#define LIBAVCODEC_BUILD 4701 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -223,12 +223,6 @@ typedef struct RcOverride{ /* only for ME compatiblity with old apps */ extern int motion_estimation_method; -/* ME algos sorted by quality */ -//FIXME remove IMHO -static const __attribute__((unused)) int Motion_Est_QTab[] = - { ME_ZERO, ME_PHODS, ME_LOG, ME_X1, ME_EPZS, ME_FULL }; - - #define FF_MAX_B_FRAMES 8 /* encoding support |