From 967a3a84e6bafc9b9888a10451e1734f67f0cb93 Mon Sep 17 00:00:00 2001 From: Johann Date: Fri, 21 Dec 2018 11:54:21 -0800 Subject: [PATCH] vp9_decodeframe.c: resolve missing declarations BUG=webm:1584 Change-Id: Ie0d26b745ab1f5907a6a2dc10fbc5083f3fb0b8d --- vp9/decoder/vp9_decodeframe.c | 7 ++++--- 1 file 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(); -- 2.40.0