summaryrefslogtreecommitdiff
path: root/libavcodec/vp8data.h
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-07-23 21:46:25 +0000
committerDavid Conrad <lessen42@gmail.com>2010-07-23 21:46:25 +0000
commitca18a478e3bfadff7084938e4eae83053910e38c (patch)
treefafa78d04cfea90534fbea4fbf14b20a4a8c3432 /libavcodec/vp8data.h
parent7697cdcf95d1f1936ac86aea78e22f3d3b6efb34 (diff)
VP8: Inline traversing vp8_small_mvtree
Much faster read_mv_component, slightly faster overall Originally committed as revision 24470 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8data.h')
-rw-r--r--libavcodec/vp8data.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h
index a72ad90399..28cc0b3403 100644
--- a/libavcodec/vp8data.h
+++ b/libavcodec/vp8data.h
@@ -110,16 +110,6 @@ static const int8_t vp8_pred16x16_tree_mvinter[4][2] = {
{ -VP8_MVMODE_NEW, -VP8_MVMODE_SPLIT } // '1110', '1111'
};
-static const int8_t vp8_small_mvtree[7][2] = {
- { 1, 4 },
- { 2, 3 },
- { -0, -1 }, // '000', '001'
- { -2, -3 }, // '010', '011'
- { 5, 6 },
- { -4, -5 }, // '100', '101'
- { -6, -7 } // '110', '111'
-};
-
static const uint8_t vp8_mbsplits[5][16] = {
{ 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1 },