Rename block_yrd_txfm to block_rd_txfm
authorGuillaume Martres <smarter3@gmail.com>
Mon, 25 Nov 2013 00:14:54 +0000 (01:14 +0100)
committerGuillaume Martres <smarter3@gmail.com>
Mon, 25 Nov 2013 00:18:51 +0000 (01:18 +0100)
This function is also used with the U and V planes.

Change-Id: Ib6beae0438790bfb690b3a2bda9c5c8b0e89a9b8

vp9/encoder/vp9_rdopt.c

index fde8429..cea1f29 100644 (file)
@@ -588,8 +588,8 @@ static void rate_block(int plane, int block, BLOCK_SIZE plane_bsize,
                            args->scan, args->nb);
 }
 
-static void block_yrd_txfm(int plane, int block, BLOCK_SIZE plane_bsize,
-                           TX_SIZE tx_size, void *arg) {
+static void block_rd_txfm(int plane, int block, BLOCK_SIZE plane_bsize,
+                          TX_SIZE tx_size, void *arg) {
   struct rdcost_block_args *args = arg;
   MACROBLOCK *const x = args->x;
   MACROBLOCKD *const xd = &x->e_mbd;
@@ -698,7 +698,7 @@ static void txfm_rd_in_plane(MACROBLOCK *x,
   rd_stack->nb = so->neighbors;
 
   foreach_transformed_block_in_plane(xd, bsize, plane,
-                                     block_yrd_txfm, rd_stack);
+                                     block_rd_txfm, rd_stack);
   if (rd_stack->skip) {
     *rate       = INT_MAX;
     *distortion = INT64_MAX;