summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_lookahead.c
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/encoder/vp9_lookahead.c
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/encoder/vp9_lookahead.c')
-rw-r--r--vp9/encoder/vp9_lookahead.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vp9/encoder/vp9_lookahead.c b/vp9/encoder/vp9_lookahead.c
index b8e2ca88c..8787be8ee 100644
--- a/vp9/encoder/vp9_lookahead.c
+++ b/vp9/encoder/vp9_lookahead.c
@@ -38,7 +38,7 @@ void vp9_lookahead_destroy(struct lookahead_ctx *ctx) {
unsigned int i;
for (i = 0; i < ctx->max_sz; i++)
- vp9_free_frame_buffer(&ctx->buf[i].img);
+ vpx_free_frame_buffer(&ctx->buf[i].img);
free(ctx->buf);
}
free(ctx);
@@ -72,7 +72,7 @@ struct lookahead_ctx *vp9_lookahead_init(unsigned int width,
if (!ctx->buf)
goto bail;
for (i = 0; i < depth; i++)
- if (vp9_alloc_frame_buffer(&ctx->buf[i].img,
+ if (vpx_alloc_frame_buffer(&ctx->buf[i].img,
width, height, subsampling_x, subsampling_y,
#if CONFIG_VP9_HIGHBITDEPTH
use_highbitdepth,
@@ -172,7 +172,7 @@ int vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src,
if (larger_dimensions) {
YV12_BUFFER_CONFIG new_img;
memset(&new_img, 0, sizeof(new_img));
- if (vp9_alloc_frame_buffer(&new_img,
+ if (vpx_alloc_frame_buffer(&new_img,
width, height, subsampling_x, subsampling_y,
#if CONFIG_VP9_HIGHBITDEPTH
use_highbitdepth,
@@ -180,7 +180,7 @@ int vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src,
VP9_ENC_BORDER_IN_PIXELS,
0))
return 1;
- vp9_free_frame_buffer(&buf->img);
+ vpx_free_frame_buffer(&buf->img);
buf->img = new_img;
} else if (new_dimensions) {
buf->img.y_crop_width = src->y_crop_width;