summaryrefslogtreecommitdiff
path: root/vpx_scale/scale_mode.h
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2012-12-03 12:26:51 -0800
committerJohn Koleszar <jkoleszar@google.com>2012-12-05 08:59:40 -0800
commit52d350febfc19ec5a1783789c183af2397bf5b20 (patch)
tree848acb68dea8305b82cdbebf349eaaee1d7bb17e /vpx_scale/scale_mode.h
parenta905672906716b2be9e741d81213177ebb4720d2 (diff)
downloadlibvpx-52d350febfc19ec5a1783789c183af2397bf5b20.tar
libvpx-52d350febfc19ec5a1783789c183af2397bf5b20.tar.gz
libvpx-52d350febfc19ec5a1783789c183af2397bf5b20.tar.bz2
libvpx-52d350febfc19ec5a1783789c183af2397bf5b20.zip
Begin to refactor vpx_scale usage in VP9
Only declare the functions in vpx_scale RTCD and include the relevant header. Remove unused files and functions in vpx_scale to avoid wasting time renaming. vpx_scale/win32/scaleopt.c contains functions which have not been called in a long time but are potentially optimized. The 'vp8' functions have not been renamed yet. That is for after the cleanup. Change-Id: I2c325a101d60fa9d27e7dfcd5b52a864b4a1e09c
Diffstat (limited to 'vpx_scale/scale_mode.h')
-rw-r--r--vpx_scale/scale_mode.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/vpx_scale/scale_mode.h b/vpx_scale/scale_mode.h
deleted file mode 100644
index 5581385b6..000000000
--- a/vpx_scale/scale_mode.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-
-/****************************************************************************
-*
-*****************************************************************************
-*/
-
-#ifndef SCALE_MODE_H
-#define SCALE_MODE_H
-
-typedef enum {
- MAINTAIN_ASPECT_RATIO = 0x0,
- SCALE_TO_FIT = 0x1,
- CENTER = 0x2,
- OTHER = 0x3
-} SCALE_MODE;
-
-
-#endif