]> granicus.if.org Git - libvpx/commitdiff
vp10/common/idct.h: add some missing prototypes
authorJames Zern <jzern@google.com>
Sat, 2 Jul 2016 00:38:47 +0000 (17:38 -0700)
committerJames Zern <jzern@google.com>
Mon, 11 Jul 2016 23:52:08 +0000 (16:52 -0700)
quiets the warning of the same name

BUG=b/29584271

Change-Id: I220cd58e1060f77e3910472fed1b167add3a08f8

vp10/common/idct.h

index ffdad0caafb06d99f93cae0e4251f0a626e080d5..5d5231434e002caebb6b95755ab85e393189f352 100644 (file)
@@ -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);