Index: source/libvpx/vp9/encoder/vp9_aq_cyclicrefresh.c |
diff --git a/source/libvpx/vp9/encoder/vp9_aq_cyclicrefresh.c b/source/libvpx/vp9/encoder/vp9_aq_cyclicrefresh.c |
index 24b427df575cb9237f7d544f818894a6f35b940e..4b1c95957500d16318829fd1de967101313ec89b 100644 |
--- a/source/libvpx/vp9/encoder/vp9_aq_cyclicrefresh.c |
+++ b/source/libvpx/vp9/encoder/vp9_aq_cyclicrefresh.c |
@@ -357,7 +357,7 @@ void vp9_cyclic_refresh_check_golden_update(VP9_COMP *const cpi) { |
// 1/CR_SEGMENT_ID_BOOST1 (refresh) for each superblock. |
// Blocks labeled as BOOST1 may later get set to BOOST2 (during the |
// encoding of the superblock). |
-void vp9_cyclic_refresh_update_map(VP9_COMP *const cpi) { |
+static void cyclic_refresh_update_map(VP9_COMP *const cpi) { |
VP9_COMMON *const cm = &cpi->common; |
CYCLIC_REFRESH *const cr = cpi->cyclic_refresh; |
unsigned char *const seg_map = cpi->segmentation_map; |
@@ -510,7 +510,7 @@ void vp9_cyclic_refresh_setup(VP9_COMP *const cpi) { |
vp9_set_segdata(seg, CR_SEGMENT_ID_BOOST2, SEG_LVL_ALT_Q, qindex_delta); |
// Update the segmentation and refresh map. |
- vp9_cyclic_refresh_update_map(cpi); |
+ cyclic_refresh_update_map(cpi); |
} |
} |