summaryrefslogtreecommitdiff
path: root/libavcodec/vp8data.h
diff options
context:
space:
mode:
authorJason Garrett-Glaser <jason@x264.com>2011-02-03 19:17:13 -0800
committerJason Garrett-Glaser <jason@x264.com>2011-02-03 19:55:02 -0800
commitdd18c9a050ac1f1437151ceb2d2afbc96c5602d8 (patch)
treed2d7d86ce707fbcb0c399701de659e1d31e9a248 /libavcodec/vp8data.h
parent4359288c565705d1734f63d277f8918ee5af5e54 (diff)
VP8: simplify lf_delta mb mode logic
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
};