Fix warnings.

Change-Id: I01dd96da18fe22450bb372b10ba90eab52e29bdf
This commit is contained in:
Christian Duvivier
2012-08-17 15:37:51 -07:00
parent ee59dd7e15
commit fc892cc54d
7 changed files with 38 additions and 3 deletions

View File

@@ -422,4 +422,19 @@ typedef struct {
#define SSIMPF_INVOKE(ctx,fn) vp8_ssimpf_##fn
#endif
#if CONFIG_NEWBESTREFMV
unsigned int vp8_sad2x16_c(
const unsigned char *src_ptr,
int src_stride,
const unsigned char *ref_ptr,
int ref_stride,
int max_sad);
unsigned int vp8_sad16x2_c(
const unsigned char *src_ptr,
int src_stride,
const unsigned char *ref_ptr,
int ref_stride,
int max_sad);
#endif
#endif