64x64 blocksize support.
3.2% gains on std/hd, 1.0% gains on hd. Change-Id: I481d5df23d8a4fc650a5bcba956554490b2bd200
This commit is contained in:
@@ -229,7 +229,7 @@ typedef struct VP9Common {
|
||||
|
||||
/* Y,U,V,Y2 */
|
||||
ENTROPY_CONTEXT_PLANES *above_context; /* row of context for each plane */
|
||||
ENTROPY_CONTEXT_PLANES left_context[2]; /* (up to) 4 contexts "" */
|
||||
ENTROPY_CONTEXT_PLANES left_context[4]; /* (up to) 4 contexts "" */
|
||||
|
||||
/* keyframe block modes are predicted by their above, left neighbors */
|
||||
|
||||
@@ -248,7 +248,10 @@ typedef struct VP9Common {
|
||||
vp9_prob prob_last_coded;
|
||||
vp9_prob prob_gf_coded;
|
||||
#if CONFIG_SUPERBLOCKS
|
||||
vp9_prob sb_coded;
|
||||
vp9_prob sb32_coded;
|
||||
#if CONFIG_SUPERBLOCKS64
|
||||
vp9_prob sb64_coded;
|
||||
#endif // CONFIG_SUPERBLOCKS64
|
||||
#endif
|
||||
|
||||
// Context probabilities when using predictive coding of segment id
|
||||
|
||||
Reference in New Issue
Block a user