]> granicus.if.org Git - libvpx/commitdiff
vpxdec: Rename the libyuv scale wrapper.
authorTom Finegan <tomfinegan@google.com>
Fri, 12 Dec 2014 19:57:04 +0000 (11:57 -0800)
committerTom Finegan <tomfinegan@google.com>
Fri, 12 Dec 2014 19:58:53 +0000 (11:58 -0800)
The other name was misleading: We do not export scaling support from
libvpx via vpx_im{g,age}*.

Change-Id: I8acb4ea0301f08c9bab557a4063ea35d147b4631

vpxdec.c

index c4d2a9e7b39e640f1461a961611124804eeadaec..30e27425bfe63e44be39a531dd38329065c8a725 100644 (file)
--- a/vpxdec.c
+++ b/vpxdec.c
@@ -131,7 +131,7 @@ static const arg_def_t *vp8_pp_args[] = {
 #endif
 
 #if CONFIG_LIBYUV
-static INLINE int vpx_image_scale(vpx_image_t *src, vpx_image_t *dst,
+static INLINE int libyuv_scale(vpx_image_t *src, vpx_image_t *dst,
                                   FilterModeEnum mode) {
 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
   if (src->fmt == VPX_IMG_FMT_I42016) {
@@ -948,7 +948,7 @@ int main_loop(int argc, const char **argv_) {
 
         if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) {
 #if CONFIG_LIBYUV
-          vpx_image_scale(img, scaled_img, kFilterBox);
+          libyuv_scale(img, scaled_img, kFilterBox);
           img = scaled_img;
 #else
           fprintf(stderr, "Failed  to scale output frame: %s.\n"