Move vp8_scale_frame to vpx namespace

Change-Id: I92d613e89c8f1174eca0789116120bfa20c25c28
This commit is contained in:
Johann 2012-12-03 16:23:49 -08:00
parent 11a84b25b5
commit a36d9a4a15
3 changed files with 4 additions and 4 deletions

View File

@ -2599,7 +2599,7 @@ static void scale_and_extend_source(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi)
Scale2Ratio(cm->horiz_scale, &hr, &hs);
Scale2Ratio(cm->vert_scale, &vr, &vs);
vp8_scale_frame(sd, &cpi->scaled_source, cm->temp_scale_frame.y_buffer,
vpx_scale_frame(sd, &cpi->scaled_source, cm->temp_scale_frame.y_buffer,
tmp_height, hs, hr, vs, vr, 0);
vp8_yv12_extend_frame_borders(&cpi->scaled_source);

View File

@ -453,7 +453,7 @@ void Scale2D
/****************************************************************************
*
* ROUTINE :
* ROUTINE : vpx_scale_frame
*
* INPUTS : YV12_BUFFER_CONFIG *src : Pointer to frame to be scaled.
* YV12_BUFFER_CONFIG *dst : Pointer to buffer to hold scaled frame.
@ -475,7 +475,7 @@ void Scale2D
* caching.
*
****************************************************************************/
void vp8_scale_frame
void vpx_scale_frame
(
YV12_BUFFER_CONFIG *src,
YV12_BUFFER_CONFIG *dst,

View File

@ -14,7 +14,7 @@
#include "vpx_scale/yv12config.h"
extern void vp8_scale_frame(YV12_BUFFER_CONFIG *src,
extern void vpx_scale_frame(YV12_BUFFER_CONFIG *src,
YV12_BUFFER_CONFIG *dst,
unsigned char *temp_area,
unsigned char temp_height,