summaryrefslogtreecommitdiff
path: root/vp9/decoder
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2018-12-21 11:54:21 -0800
committerJohann <johannkoenig@google.com>2018-12-21 11:54:21 -0800
commit967a3a84e6bafc9b9888a10451e1734f67f0cb93 (patch)
tree59d614c644bc77b31ec181c9fc70d2a44283b96f /vp9/decoder
parent1cb039529d4c1b535093c759850835fae794d424 (diff)
downloadlibvpx-967a3a84e6bafc9b9888a10451e1734f67f0cb93.tar
libvpx-967a3a84e6bafc9b9888a10451e1734f67f0cb93.tar.gz
libvpx-967a3a84e6bafc9b9888a10451e1734f67f0cb93.tar.bz2
libvpx-967a3a84e6bafc9b9888a10451e1734f67f0cb93.zip
vp9_decodeframe.c: resolve missing declarations
BUG=webm:1584 Change-Id: Ie0d26b745ab1f5907a6a2dc10fbc5083f3fb0b8d
Diffstat (limited to 'vp9/decoder')
-rw-r--r--vp9/decoder/vp9_decodeframe.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/vp9/decoder/vp9_decodeframe.c b/vp9/decoder/vp9_decodeframe.c
index f5050bcd8..947a158bd 100644
--- a/vp9/decoder/vp9_decodeframe.c
+++ b/vp9/decoder/vp9_decodeframe.c
@@ -1710,7 +1710,7 @@ static void vp9_tile_done(VP9Decoder *pbi) {
#endif
}
-void vp9_jobq_alloc(VP9Decoder *pbi) {
+static void vp9_jobq_alloc(VP9Decoder *pbi) {
VP9_COMMON *const cm = &pbi->common;
RowMTWorkerData *const row_mt_worker_data = pbi->row_mt_worker_data;
const int aligned_rows = mi_cols_aligned_to_sb(cm->mi_rows);
@@ -2251,8 +2251,9 @@ static INLINE void init_mt(VP9Decoder *pbi) {
vp9_reset_lfm(cm);
}
-const uint8_t *decode_tiles_row_wise_mt(VP9Decoder *pbi, const uint8_t *data,
- const uint8_t *data_end) {
+static const uint8_t *decode_tiles_row_wise_mt(VP9Decoder *pbi,
+ const uint8_t *data,
+ const uint8_t *data_end) {
VP9_COMMON *const cm = &pbi->common;
RowMTWorkerData *const row_mt_worker_data = pbi->row_mt_worker_data;
const VPxWorkerInterface *const winterface = vpx_get_worker_interface();