Rename av1_write_coeffs_txb_wrap to write_coeffs_txb_wrap

Follow local function naming conventions.

Change-Id: Ice840fdc03cbb0347e26326988a7520c38f77672
diff --git a/av1/encoder/encodetxb.c b/av1/encoder/encodetxb.c
index fd12d0b..b360342 100644
--- a/av1/encoder/encodetxb.c
+++ b/av1/encoder/encodetxb.c
@@ -575,10 +575,9 @@
   aom_writer *w;
 } ENCODE_TXB_ARGS;
 
-static void av1_write_coeffs_txb_wrap(const AV1_COMMON *cm, MACROBLOCK *x,
-                                      aom_writer *w, int plane, int block,
-                                      int blk_row, int blk_col,
-                                      TX_SIZE tx_size) {
+static void write_coeffs_txb_wrap(const AV1_COMMON *cm, MACROBLOCK *x,
+                                  aom_writer *w, int plane, int block,
+                                  int blk_row, int blk_col, TX_SIZE tx_size) {
   MACROBLOCKD *xd = &x->e_mbd;
   tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block);
   uint16_t eob = x->mbmi_ext->eobs[plane][block];
@@ -621,8 +620,8 @@
 
       for (blk_row = row; blk_row < unit_height; blk_row += stepr) {
         for (blk_col = col; blk_col < unit_width; blk_col += stepc) {
-          av1_write_coeffs_txb_wrap(cm, x, w, plane, block, blk_row, blk_col,
-                                    tx_size);
+          write_coeffs_txb_wrap(cm, x, w, plane, block, blk_row, blk_col,
+                                tx_size);
           block += step;
         }
       }