]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vp9data.h
avcodec/jpeg2000: replace naive pow call with smarter exp2fi
[ffmpeg] / libavcodec / vp9data.h
index 4142cea52fc283d0942e05f5ace726e7bf6898a3..cb12e7e94679c4a21e7a65b3021aacb3e4f14fa4 100644 (file)
 
 #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'