summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-05-14 19:49:53 -0700
committerJames Zern <jzern@google.com>2015-05-15 10:43:47 -0700
commitf3bf5f2029ac66acc866b0e68aa0103fa39d8d4c (patch)
treea07ac301d014876677fe7df24d4a10ffc74009ca
parent8371c897dc5c48e92077b8eb291a04cae3d889c0 (diff)
downloadlibvpx-f3bf5f2029ac66acc866b0e68aa0103fa39d8d4c.tar
libvpx-f3bf5f2029ac66acc866b0e68aa0103fa39d8d4c.tar.gz
libvpx-f3bf5f2029ac66acc866b0e68aa0103fa39d8d4c.tar.bz2
libvpx-f3bf5f2029ac66acc866b0e68aa0103fa39d8d4c.zip
vp9_decodeframe.c: make a function static
silences a missing declaration warning Change-Id: I2f49ebca9ba7a47f3c48f5fe919b90cd4114a9bc
-rw-r--r--vp9/decoder/vp9_decodeframe.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/vp9/decoder/vp9_decodeframe.c b/vp9/decoder/vp9_decodeframe.c
index 492ded4fb..7415a1b78 100644
--- a/vp9/decoder/vp9_decodeframe.c
+++ b/vp9/decoder/vp9_decodeframe.c
@@ -1867,14 +1867,15 @@ static void extend_and_predict(const uint8_t *buf_ptr1, int pre_buf_stride,
}
#endif // CONFIG_VP9_HIGHBITDEPTH
-void dec_build_inter_predictors(VP9Decoder *const pbi, MACROBLOCKD *xd,
- int plane, int bw, int bh, int x,
- int y, int w, int h, int mi_x, int mi_y,
- const InterpKernel *kernel,
- const struct scale_factors *sf,
- struct buf_2d *pre_buf, struct buf_2d *dst_buf,
- const MV* mv, RefCntBuffer *ref_frame_buf,
- int is_scaled, int ref) {
+static void dec_build_inter_predictors(VP9Decoder *const pbi, MACROBLOCKD *xd,
+ int plane, int bw, int bh, int x,
+ int y, int w, int h, int mi_x, int mi_y,
+ const InterpKernel *kernel,
+ const struct scale_factors *sf,
+ struct buf_2d *pre_buf,
+ struct buf_2d *dst_buf, const MV* mv,
+ RefCntBuffer *ref_frame_buf,
+ int is_scaled, int ref) {
struct macroblockd_plane *const pd = &xd->plane[plane];
uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
MV32 scaled_mv;