From: Johann Date: Fri, 21 Dec 2018 19:54:21 +0000 (-0800) Subject: vp9_decodeframe.c: resolve missing declarations X-Git-Tag: v1.8.0~26^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=967a3a84e6bafc9b9888a10451e1734f67f0cb93;p=libvpx vp9_decodeframe.c: resolve missing declarations BUG=webm:1584 Change-Id: Ie0d26b745ab1f5907a6a2dc10fbc5083f3fb0b8d --- 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();