summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-08-14 15:27:02 -0700
committerJingning Han <jingning@google.com>2015-08-14 15:27:43 -0700
commit89af744ba6450daa55d2985c826fa58c8317e8d8 (patch)
treed51ea24e080c52301ff3dadf3372f3a122a41345 /vp9/common
parentd04a0d77fb0a26a7f1bb9cb684aa7c3fb400bd99 (diff)
downloadlibvpx-89af744ba6450daa55d2985c826fa58c8317e8d8.tar
libvpx-89af744ba6450daa55d2985c826fa58c8317e8d8.tar.gz
libvpx-89af744ba6450daa55d2985c826fa58c8317e8d8.tar.bz2
libvpx-89af744ba6450daa55d2985c826fa58c8317e8d8.zip
Change vp9_ prefix function names in vpx_scale to vpx_
Change-Id: Iac85902cbbb3e752801dc85de9a3c778e47304aa
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_alloccommon.c6
-rw-r--r--vp9/common/vp9_postproc.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/vp9/common/vp9_alloccommon.c b/vp9/common/vp9_alloccommon.c
index a3e01bf38..ac417b692 100644
--- a/vp9/common/vp9_alloccommon.c
+++ b/vp9/common/vp9_alloccommon.c
@@ -95,14 +95,14 @@ void vp9_free_ref_frame_buffers(BufferPool *pool) {
}
vpx_free(pool->frame_bufs[i].mvs);
pool->frame_bufs[i].mvs = NULL;
- vp9_free_frame_buffer(&pool->frame_bufs[i].buf);
+ vpx_free_frame_buffer(&pool->frame_bufs[i].buf);
}
}
void vp9_free_postproc_buffers(VP9_COMMON *cm) {
#if CONFIG_VP9_POSTPROC
- vp9_free_frame_buffer(&cm->post_proc_buffer);
- vp9_free_frame_buffer(&cm->post_proc_buffer_int);
+ vpx_free_frame_buffer(&cm->post_proc_buffer);
+ vpx_free_frame_buffer(&cm->post_proc_buffer_int);
#else
(void)cm;
#endif
diff --git a/vp9/common/vp9_postproc.c b/vp9/common/vp9_postproc.c
index 1843bb95c..71ab86150 100644
--- a/vp9/common/vp9_postproc.c
+++ b/vp9/common/vp9_postproc.c
@@ -659,7 +659,7 @@ int vp9_post_proc_frame(struct VP9Common *cm,
const int width = ALIGN_POWER_OF_TWO(cm->width, 4);
const int height = ALIGN_POWER_OF_TWO(cm->height, 4);
- if (vp9_alloc_frame_buffer(&cm->post_proc_buffer_int, width, height,
+ if (vpx_alloc_frame_buffer(&cm->post_proc_buffer_int, width, height,
cm->subsampling_x, cm->subsampling_y,
#if CONFIG_VP9_HIGHBITDEPTH
cm->use_highbitdepth,
@@ -677,7 +677,7 @@ int vp9_post_proc_frame(struct VP9Common *cm,
}
}
- if (vp9_realloc_frame_buffer(&cm->post_proc_buffer, cm->width, cm->height,
+ if (vpx_realloc_frame_buffer(&cm->post_proc_buffer, cm->width, cm->height,
cm->subsampling_x, cm->subsampling_y,
#if CONFIG_VP9_HIGHBITDEPTH
cm->use_highbitdepth,