Convert PVQ coefficient handling functions to tran_low_t.
Change-Id: Iad2b526d65865cbcb2119aca21686563ca8e97fd
diff --git a/av1/common/partition.h b/av1/common/partition.h
index 5ee7f15..bd308f9 100644
--- a/av1/common/partition.h
+++ b/av1/common/partition.h
@@ -28,11 +28,11 @@
extern const int *const OD_BAND_OFFSETS[OD_TXSIZES + 1];
-void od_raster_to_coding_order(int16_t *dst, int n, TX_TYPE ty_type,
- const int16_t *src, int stride);
+void od_raster_to_coding_order(tran_low_t *dst, int n, TX_TYPE ty_type,
+ const tran_low_t *src, int stride);
-void od_coding_order_to_raster(int16_t *dst, int stride, TX_TYPE ty_type,
- const int16_t *src, int n);
+void od_coding_order_to_raster(tran_low_t *dst, int stride, TX_TYPE ty_type,
+ const tran_low_t *src, int n);
void od_raster_to_coding_order_16(int16_t *dst, int n, const int16_t *src,
int stride);