Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Garrett-Glaser <jason@x264.com>2011-02-04 06:17:13 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-02-06 22:31:43 +0300
commit8cde1b7997b92a2be01f2c0e2c88b9b10e799756 (patch)
tree844b10a15e553bf7970b37609c365c99b2f75888 /libavcodec/vp8data.h
parentab543afe47c5bc63622acce775189bb920638126 (diff)
VP8: simplify lf_delta mb mode logic
(cherry picked from commit dd18c9a050ac1f1437151ceb2d2afbc96c5602d8)
Diffstat (limited to 'libavcodec/vp8data.h')
-rw-r--r--libavcodec/vp8data.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h
index 775472e8e8..5326e21c0c 100644
--- a/libavcodec/vp8data.h
+++ b/libavcodec/vp8data.h
@@ -48,10 +48,8 @@ enum dct_token {
#define MODE_I4x4 4
enum inter_mvmode {
- VP8_MVMODE_NEAREST = MODE_I4x4 + 1,
- VP8_MVMODE_NEAR,
- VP8_MVMODE_ZERO,
- VP8_MVMODE_NEW,
+ VP8_MVMODE_ZERO = MODE_I4x4 + 1,
+ VP8_MVMODE_MV,
VP8_MVMODE_SPLIT
};