From: James Zern Date: Sat, 2 Jul 2016 00:38:47 +0000 (-0700) Subject: vp10/common/idct.h: add some missing prototypes X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9bf5a1ab4624b140e8e63fba3624ef797ef1ef5d;p=libvpx vp10/common/idct.h: add some missing prototypes quiets the warning of the same name BUG=b/29584271 Change-Id: I220cd58e1060f77e3910472fed1b167add3a08f8 --- 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);