]> granicus.if.org Git - libvpx/commitdiff
vp9_encoder: make vp9_alloc_compressor_data private
authorJames Zern <jzern@google.com>
Tue, 18 Aug 2015 03:17:00 +0000 (20:17 -0700)
committerJames Zern <jzern@google.com>
Sat, 29 Aug 2015 01:53:57 +0000 (18:53 -0700)
Change-Id: I38b4de692f4f7e880766316783981cbd1134bed9

vp9/encoder/vp9_encoder.c
vp9/encoder/vp9_encoder.h

index 3cb935f9752c0ba8e055751d6a97c1b1286e17d9..02cafe5cbd29958c263990757be701258f9251a6 100644 (file)
@@ -686,7 +686,7 @@ static int alloc_context_buffers_ext(VP9_COMP *cpi) {
   return 0;
 }
 
-void vp9_alloc_compressor_data(VP9_COMP *cpi) {
+static void alloc_compressor_data(VP9_COMP *cpi) {
   VP9_COMMON *cm = &cpi->common;
 
   vp9_alloc_context_buffers(cm, cm->width, cm->height);
@@ -775,7 +775,7 @@ static void init_config(struct VP9_COMP *cpi, VP9EncoderConfig *oxcf) {
 
   cm->width = oxcf->width;
   cm->height = oxcf->height;
-  vp9_alloc_compressor_data(cpi);
+  alloc_compressor_data(cpi);
 
   cpi->svc.temporal_layering_mode = oxcf->temporal_layering_mode;
 
@@ -1510,7 +1510,7 @@ void vp9_change_config(struct VP9_COMP *cpi, const VP9EncoderConfig *oxcf) {
   if (cpi->initial_width) {
     if (cm->width > cpi->initial_width || cm->height > cpi->initial_height) {
       vp9_free_context_buffers(cm);
-      vp9_alloc_compressor_data(cpi);
+      alloc_compressor_data(cpi);
       realloc_segmentation_maps(cpi);
       cpi->initial_width = cpi->initial_height = 0;
     }
index c10abd20d097aee35868586d4838207a22cd7422..7c2101850177c6e307dd9bf42134465f004bf338 100644 (file)
@@ -605,8 +605,6 @@ int64_t vp9_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a,
                              const YV12_BUFFER_CONFIG *b);
 #endif  // CONFIG_VP9_HIGHBITDEPTH
 
-void vp9_alloc_compressor_data(VP9_COMP *cpi);
-
 void vp9_scale_references(VP9_COMP *cpi);
 
 void vp9_update_reference_frames(VP9_COMP *cpi);