summaryrefslogtreecommitdiff
path: root/libavcodec/vp9data.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-10-14 09:51:54 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-10-15 13:02:20 +0200
commitb95f241b6e6360eef8073b4c7b55bd0e3eb73aca (patch)
treecba765f68afaa7f2faf2be07c1ccddefdb721958 /libavcodec/vp9data.h
parentf2f55bd9ca45001dea0d80c137fa93d1b9b7d01c (diff)
vp9: split header into separate struct and expose in vp9.h
This allows hwaccels to access the bitstream header information.
Diffstat (limited to 'libavcodec/vp9data.h')
-rw-r--r--libavcodec/vp9data.h14
1 files changed, 0 insertions, 14 deletions
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'