From 9bf5a1ab4624b140e8e63fba3624ef797ef1ef5d Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 1 Jul 2016 17:38:47 -0700 Subject: [PATCH] vp10/common/idct.h: add some missing prototypes quiets the warning of the same name BUG=b/29584271 Change-Id: I220cd58e1060f77e3910472fed1b167add3a08f8 --- vp10/common/idct.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vp10/common/idct.h b/vp10/common/idct.h index ffdad0caa..5d5231434 100644 --- a/vp10/common/idct.h +++ b/vp10/common/idct.h @@ -57,6 +57,12 @@ void vp10_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, int eob); void vp10_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, int eob); +void vp10_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride, + int eob); +void vp10_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride, + int eob); +void vp10_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride, + int eob); void vp10_inv_txfm_add_4x4(const tran_low_t *input, uint8_t *dest, int stride, int eob, TX_TYPE tx_type, int lossless); -- 2.50.1