shithub: libvpx

Download patch

ref: 9b45ae55f085fdd14b148bc562cf1ec14f38648d
parent: e59d0b43e551cc29a0fe099324e830a604f85aa7
parent: 967a3a84e6bafc9b9888a10451e1734f67f0cb93
author: Johann Koenig <johannkoenig@google.com>
date: Fri Dec 21 16:46:00 EST 2018

Merge "vp9_decodeframe.c: resolve missing declarations"

--- a/vp9/decoder/vp9_decodeframe.c
+++ b/vp9/decoder/vp9_decodeframe.c
@@ -1710,7 +1710,7 @@
 #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 @@
   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();