diff options
author | James Zern <jzern@google.com> | 2013-07-12 14:11:53 -0700 |
---|---|---|
committer | James Zern <jzern@google.com> | 2013-07-12 15:25:48 -0700 |
commit | 4fc6c88e9c8460b40528668c65d4ffd125f966d9 (patch) | |
tree | 1c659bc70f1641df230958da6225fa1d146f2764 /vpx_scale | |
parent | 37c0a1a8d0a360d7a13e27ac5cc6f2c40c046b5a (diff) | |
download | libvpx-4fc6c88e9c8460b40528668c65d4ffd125f966d9.tar.gz libvpx-4fc6c88e9c8460b40528668c65d4ffd125f966d9.tar.bz2 libvpx-4fc6c88e9c8460b40528668c65d4ffd125f966d9.zip |
yv12config: remove YUV_TYPE
this was never fleshed out in the context of VP8, for which it was
added. for VP9 it has no meaning.
Change-Id: Iba2ecc026d9e947067b96690245d337e51e26eff
Diffstat (limited to 'vpx_scale')
-rw-r--r-- | vpx_scale/yv12config.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/vpx_scale/yv12config.h b/vpx_scale/yv12config.h index c35137041..127843c41 100644 --- a/vpx_scale/yv12config.h +++ b/vpx_scale/yv12config.h @@ -21,24 +21,6 @@ extern "C" { #define VP9BORDERINPIXELS 96 #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; @@ -67,7 +49,6 @@ extern "C" { int buffer_alloc_sz; int border; int frame_size; - YUV_TYPE clrtype; int corrupted; int flags; |