From b95f241b6e6360eef8073b4c7b55bd0e3eb73aca Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Wed, 14 Oct 2015 09:51:54 +0200 Subject: vp9: split header into separate struct and expose in vp9.h This allows hwaccels to access the bitstream header information. --- libavcodec/vp9data.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'libavcodec/vp9data.h') diff --git a/libavcodec/vp9data.h b/libavcodec/vp9data.h index 4142cea52f..cb12e7e946 100644 --- a/libavcodec/vp9data.h +++ b/libavcodec/vp9data.h @@ -26,13 +26,6 @@ #include "vp9.h" -enum BlockPartition { - PARTITION_NONE, // [ ] <-. - PARTITION_H, // [-] | - PARTITION_V, // [|] | - PARTITION_SPLIT, // [+] --' -}; - static const int8_t vp9_partition_tree[3][2] = { { -PARTITION_NONE, 1 }, // '0' { -PARTITION_H, 2 }, // '10' @@ -212,13 +205,6 @@ static const uint8_t vp9_default_kf_uvmode_probs[10][9] = { { 102, 19, 66, 162, 182, 122, 35, 59, 128 } /* y = tm */ }; -enum InterPredMode { - NEARESTMV = 10, - NEARMV = 11, - ZEROMV = 12, - NEWMV = 13, -}; - static const int8_t vp9_inter_mode_tree[3][2] = { { -ZEROMV, 1 }, // '0' { -NEARESTMV, 2 }, // '10' -- cgit v1.2.3