diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-02-03 19:17:13 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-06 20:31:43 +0100 |
commit | 8cde1b7997b92a2be01f2c0e2c88b9b10e799756 (patch) | |
tree | 844b10a15e553bf7970b37609c365c99b2f75888 /libavcodec/vp8data.h | |
parent | ab543afe47c5bc63622acce775189bb920638126 (diff) | |
download | ffmpeg-8cde1b7997b92a2be01f2c0e2c88b9b10e799756.tar.gz |
VP8: simplify lf_delta mb mode logic
(cherry picked from commit dd18c9a050ac1f1437151ceb2d2afbc96c5602d8)
Diffstat (limited to 'libavcodec/vp8data.h')
-rw-r--r-- | libavcodec/vp8data.h | 6 |
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 }; |