summaryrefslogtreecommitdiff
path: root/vpx_scale
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-07-16 12:16:04 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-07-16 12:16:04 -0700
commit3a7c2665d0162fd4b991f0942f0f4d31a2b98e5c (patch)
treeb8bf2c71183da4671effc2908d7aadae3b6e48a1 /vpx_scale
parent58a2005367cddbc139dabd855869ec560f1147e3 (diff)
parent4fc6c88e9c8460b40528668c65d4ffd125f966d9 (diff)
downloadlibvpx-3a7c2665d0162fd4b991f0942f0f4d31a2b98e5c.tar.gz
libvpx-3a7c2665d0162fd4b991f0942f0f4d31a2b98e5c.tar.bz2
libvpx-3a7c2665d0162fd4b991f0942f0f4d31a2b98e5c.zip
Merge "yv12config: remove YUV_TYPE"
Diffstat (limited to 'vpx_scale')
-rw-r--r--vpx_scale/yv12config.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/vpx_scale/yv12config.h b/vpx_scale/yv12config.h
index a919e493b..66e587af5 100644
--- a/vpx_scale/yv12config.h
+++ b/vpx_scale/yv12config.h
@@ -22,24 +22,6 @@ extern "C" {
#define VP9BORDERINPIXELS 160
#define VP9_INTERP_EXTEND 4
- /*************************************
- For INT_YUV:
-
- Y = (R+G*2+B)/4;
- U = (R-B)/2;
- V = (G*2 - R - B)/4;
- And
- R = Y+U-V;
- G = Y+V;
- B = Y-U-V;
- ************************************/
- typedef enum
- {
- REG_YUV = 0, /* Regular yuv */
- INT_YUV = 1 /* The type of yuv that can be tranfer to and from RGB through integer transform */
- }
- YUV_TYPE;
-
typedef struct yv12_buffer_config {
int y_width;
int y_height;
@@ -68,7 +50,6 @@ extern "C" {
int buffer_alloc_sz;
int border;
int frame_size;
- YUV_TYPE clrtype;
int corrupted;
int flags;