vp8_yv12 -> vpx_yv12 Change-Id: Ifbf24b99a841b7f7b5bff78b8830ccaed0d38170
diff --git a/vp10/decoder/decoder.c b/vp10/decoder/decoder.c index b0334f8..ac26778 100644 --- a/vp10/decoder/decoder.c +++ b/vp10/decoder/decoder.c
@@ -171,7 +171,7 @@ vpx_internal_error(&cm->error, VPX_CODEC_ERROR, "Incorrect buffer dimensions"); else - vp8_yv12_copy_frame(cfg, sd); + vpx_yv12_copy_frame(cfg, sd); } else { vpx_internal_error(&cm->error, VPX_CODEC_ERROR, "Invalid reference frame"); @@ -221,7 +221,7 @@ // Manage the reference counters and copy image. ref_cnt_fb(frame_bufs, ref_fb_ptr, free_fb); ref_buf->buf = &frame_bufs[*ref_fb_ptr].buf; - vp8_yv12_copy_frame(sd, ref_buf->buf); + vpx_yv12_copy_frame(sd, ref_buf->buf); } return cm->error.error_code;
diff --git a/vp10/encoder/encoder.c b/vp10/encoder/encoder.c index 69d2351..ef2fb68 100644 --- a/vp10/encoder/encoder.c +++ b/vp10/encoder/encoder.c
@@ -2285,7 +2285,7 @@ YV12_BUFFER_CONFIG *sd) { YV12_BUFFER_CONFIG *cfg = get_vp10_ref_frame_buffer(cpi, ref_frame_flag); if (cfg) { - vp8_yv12_copy_frame(cfg, sd); + vpx_yv12_copy_frame(cfg, sd); return 0; } else { return -1; @@ -2296,7 +2296,7 @@ YV12_BUFFER_CONFIG *sd) { YV12_BUFFER_CONFIG *cfg = get_vp10_ref_frame_buffer(cpi, ref_frame_flag); if (cfg) { - vp8_yv12_copy_frame(sd, cfg); + vpx_yv12_copy_frame(sd, cfg); return 0; } else { return -1;
diff --git a/vpx_scale/generic/yv12config.c b/vpx_scale/generic/yv12config.c index 4f3a445..815041d 100644 --- a/vpx_scale/generic/yv12config.c +++ b/vpx_scale/generic/yv12config.c
@@ -25,7 +25,7 @@ (void*)(((size_t)(addr) + ((align) - 1)) & (size_t)-(align)) int -vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf) { +vpx_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf) { if (ybf) { // If libvpx is using frame buffer callbacks then buffer_alloc_sz must // not be set. @@ -44,7 +44,7 @@ return 0; } -int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, +int vpx_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) { if (ybf) { int aligned_width = (width + 15) & ~15; @@ -105,11 +105,11 @@ return -2; } -int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, +int vpx_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) { if (ybf) { - vp8_yv12_de_alloc_frame_buffer(ybf); - return vp8_yv12_realloc_frame_buffer(ybf, width, height, border); + vpx_yv12_de_alloc_frame_buffer(ybf); + return vpx_yv12_realloc_frame_buffer(ybf, width, height, border); } return -2; }
diff --git a/vpx_scale/generic/yv12extend.c b/vpx_scale/generic/yv12extend.c index e3b794f..4bdc841 100644 --- a/vpx_scale/generic/yv12extend.c +++ b/vpx_scale/generic/yv12extend.c
@@ -104,7 +104,7 @@ } #endif -void vp8_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) { +void vpx_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) { const int uv_border = ybf->border / 2; assert(ybf->border % 2 == 0); @@ -222,7 +222,7 @@ // Copies the source image into the destination image and updates the // destination's UMV borders. // Note: The frames are assumed to be identical in size. -void vp8_yv12_copy_frame_c(const YV12_BUFFER_CONFIG *src_ybc, +void vpx_yv12_copy_frame_c(const YV12_BUFFER_CONFIG *src_ybc, YV12_BUFFER_CONFIG *dst_ybc) { int row; const uint8_t *src = src_ybc->y_buffer; @@ -263,7 +263,7 @@ dst += dst_ybc->uv_stride; } - vp8_yv12_extend_frame_borders_c(dst_ybc); + vpx_yv12_extend_frame_borders_c(dst_ybc); return; } else { assert(!(dst_ybc->flags & YV12_FLAG_HIGHBITDEPTH)); @@ -294,7 +294,7 @@ dst += dst_ybc->uv_stride; } - vp8_yv12_extend_frame_borders_c(dst_ybc); + vpx_yv12_extend_frame_borders_c(dst_ybc); } void vpx_yv12_copy_y_c(const YV12_BUFFER_CONFIG *src_ybc,
diff --git a/vpx_scale/vpx_scale_rtcd.pl b/vpx_scale/vpx_scale_rtcd.pl index 56b952b..310d73b 100644 --- a/vpx_scale/vpx_scale_rtcd.pl +++ b/vpx_scale/vpx_scale_rtcd.pl
@@ -16,9 +16,9 @@ add_proto qw/void vp8_vertical_band_2_1_scale_i/, "unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width"; } -add_proto qw/void vp8_yv12_extend_frame_borders/, "struct yv12_buffer_config *ybf"; +add_proto qw/void vpx_yv12_extend_frame_borders/, "struct yv12_buffer_config *ybf"; -add_proto qw/void vp8_yv12_copy_frame/, "const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc"; +add_proto qw/void vpx_yv12_copy_frame/, "const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc"; add_proto qw/void vpx_yv12_copy_y/, "const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc";
diff --git a/vpx_scale/yv12config.h b/vpx_scale/yv12config.h index 02f21eb..ad1b32a 100644 --- a/vpx_scale/yv12config.h +++ b/vpx_scale/yv12config.h
@@ -66,11 +66,11 @@ #define YV12_FLAG_HIGHBITDEPTH 8 -int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, +int vpx_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border); -int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, +int vpx_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border); -int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf); +int vpx_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf); int vpx_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y,