shithub: libvpx

Download patch

ref: ab77828b36e2defd47c6b8166cbf61b77e26aa2b
parent: 8dede954c7d3cba10692dbf9744e2c3d3a94c72b
author: Jingning Han <jingning@google.com>
date: Tue Jul 23 11:59:58 EDT 2013

Unify the use of encode_b_args/optimize_block_args

The struct optimize_block_args is defined same as encode_b_args.
Remove this redundant definition, and use encode_b_args consistently.

Change-Id: I1703aeeb3bacf92e98a34f4355202712110173d9

--- a/vp9/encoder/vp9_encodemb.c
+++ b/vp9/encoder/vp9_encodemb.c
@@ -356,12 +356,6 @@
   *a = *l = (final_eob > 0);
 }
 
-struct optimize_block_args {
-  VP9_COMMON *cm;
-  MACROBLOCK *x;
-  struct optimize_ctx *ctx;
-};
-
 void vp9_optimize_b(int plane, int block, BLOCK_SIZE_TYPE bsize,
                     int ss_txfrm_size, VP9_COMMON *cm, MACROBLOCK *mb,
                     struct optimize_ctx *ctx) {
@@ -377,7 +371,7 @@
 
 static void optimize_block(int plane, int block, BLOCK_SIZE_TYPE bsize,
                            int ss_txfrm_size, void *arg) {
-  const struct optimize_block_args* const args = arg;
+  const struct encode_b_args* const args = arg;
   vp9_optimize_b(plane, block, bsize, ss_txfrm_size, args->cm, args->x,
                  args->ctx);
 }
@@ -414,7 +408,7 @@
 
 void vp9_optimize_sby(VP9_COMMON *cm, MACROBLOCK *x, BLOCK_SIZE_TYPE bsize) {
   struct optimize_ctx ctx;
-  struct optimize_block_args arg = {cm, x, &ctx};
+  struct encode_b_args arg = {cm, x, &ctx};
   vp9_optimize_init(&x->e_mbd, bsize, &ctx);
   foreach_transformed_block_in_plane(&x->e_mbd, bsize, 0, optimize_block, &arg);
 }
@@ -422,7 +416,7 @@
 void vp9_optimize_sbuv(VP9_COMMON *const cm, MACROBLOCK *x,
                        BLOCK_SIZE_TYPE bsize) {
   struct optimize_ctx ctx;
-  struct optimize_block_args arg = {cm, x, &ctx};
+  struct encode_b_args arg = {cm, x, &ctx};
   vp9_optimize_init(&x->e_mbd, bsize, &ctx);
   foreach_transformed_block_uv(&x->e_mbd, bsize, optimize_block, &arg);
 }