summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2002-05-06 19:32:55 +0000
committerJuanjo <pulento@users.sourceforge.net>2002-05-06 19:32:55 +0000
commitbc6caae212b8a5be9e78625b77ef8cc270b4a443 (patch)
tree92bf8450d201eb989411e389952440e432b6f799 /libavcodec/avcodec.h
parentafa90da5fb4715fcc974f34feab3a90400925845 (diff)
- MPEG-4 B frames coding option for ffmpeg.c
- Warning fixes. Originally committed as revision 448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 074b27c2b2..ba711f7627 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -75,7 +75,8 @@ enum Motion_Est_ID {
extern int motion_estimation_method;
/* ME algos sorted by quality */
-static const int Motion_Est_QTab[] = { 1, 4, 3, 6, 5, 2 };
+static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG,
+ ME_X1, ME_EPZS, ME_FULL };
#define FF_MAX_B_FRAMES 4