ref: 8191ed8b630b8a67770f2e1b17d6994578e520f5
parent: bd863314d01a3024e94934d9a6418a937d9f2ec4
parent: d3b6062a130613f6eed179bd8042527e712af372
author: Aℓex Converse <[email protected]>
date: Tue Jul 28 17:59:02 EDT 2015
Merge changes If196d9e5,Ib669d572 * changes: Simplify is_skippable to point straight to eobs. Don't initialize extra context tree buffers for 4x8 and 8x4.
--- a/vp9/encoder/vp9_context_tree.c
+++ b/vp9/encoder/vp9_context_tree.c
@@ -69,10 +69,13 @@
alloc_mode_context(cm, num_4x4_blk/2, &tree->horizontal[0]);
alloc_mode_context(cm, num_4x4_blk/2, &tree->vertical[0]);
- /* TODO(Jbb): for 4x8 and 8x4 these allocated values are not used.
- * Figure out a better way to do this. */
- alloc_mode_context(cm, num_4x4_blk/2, &tree->horizontal[1]);
- alloc_mode_context(cm, num_4x4_blk/2, &tree->vertical[1]);
+ if (num_4x4_blk > 4) {
+ alloc_mode_context(cm, num_4x4_blk/2, &tree->horizontal[1]);
+ alloc_mode_context(cm, num_4x4_blk/2, &tree->vertical[1]);
+ } else {
+ memset(&tree->horizontal[1], 0, sizeof(tree->horizontal[1]));
+ memset(&tree->vertical[1], 0, sizeof(tree->vertical[1]));
+ }
}
static void free_tree_contexts(PC_TREE *tree) {
--- a/vp9/encoder/vp9_tokenize.c
+++ b/vp9/encoder/vp9_tokenize.c
@@ -568,7 +568,7 @@
}
struct is_skippable_args {
- MACROBLOCK *x;
+ uint16_t *eobs;
int *skippable;
};
static void is_skippable(int plane, int block,
@@ -575,9 +575,10 @@
BLOCK_SIZE plane_bsize, TX_SIZE tx_size,
void *argv) {
struct is_skippable_args *args = argv;
+ (void)plane;
(void)plane_bsize;
(void)tx_size;
- args->skippable[0] &= (!args->x->plane[plane].eobs[block]);
+ args->skippable[0] &= (!args->eobs[block]);
}
// TODO(yaowu): rewrite and optimize this function to remove the usage of
@@ -584,7 +585,7 @@
// vp9_foreach_transform_block() and simplify is_skippable().
int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
int result = 1;
- struct is_skippable_args args = {x, &result};
+ struct is_skippable_args args = {x->plane[plane].eobs, &result};
vp9_foreach_transformed_block_in_plane(&x->e_mbd, bsize, plane, is_skippable,
&args);
return result;
@@ -595,14 +596,15 @@
void *argv) {
struct is_skippable_args *args = argv;
int eobs = (tx_size == TX_4X4) ? 3 : 10;
+ (void) plane;
(void) plane_bsize;
- *(args->skippable) |= (args->x->plane[plane].eobs[block] > eobs);
+ *(args->skippable) |= (args->eobs[block] > eobs);
}
int vp9_has_high_freq_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
int result = 0;
- struct is_skippable_args args = {x, &result};
+ struct is_skippable_args args = {x->plane[plane].eobs, &result};
vp9_foreach_transformed_block_in_plane(&x->e_mbd, bsize, plane,
has_high_freq_coeff, &args);
return result;