diff options
author | Alex Converse <aconverse@google.com> | 2014-09-02 12:25:44 -0700 |
---|---|---|
committer | Alex Converse <aconverse@google.com> | 2014-09-08 11:12:09 -0700 |
commit | b932c6c5dd1b6c510877e0d42d500470fed5e56d (patch) | |
tree | a5e5533319bd83128df539e8c337fbc4b9656fbd /vpx_scale | |
parent | d76ef3e01c3693fa4f9ea111c0ae254dcc622a22 (diff) | |
download | libvpx-b932c6c5dd1b6c510877e0d42d500470fed5e56d.tar.gz |
BITSTREAM CLARIFICATION: Forbid referencing across color spaces.
Check image format of reference frames.
Change-Id: I7d8d7f097ba547839ff9cec3880bd15a4948ee06
Diffstat (limited to 'vpx_scale')
-rw-r--r-- | vpx_scale/yv12config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vpx_scale/yv12config.h b/vpx_scale/yv12config.h index eb0a8d68f..9ff764c66 100644 --- a/vpx_scale/yv12config.h +++ b/vpx_scale/yv12config.h @@ -15,6 +15,7 @@ extern "C" { #endif +#include "vpx/vpx_codec.h" #include "vpx/vpx_frame_buffer.h" #include "vpx/vpx_integer.h" @@ -50,6 +51,7 @@ typedef struct yv12_buffer_config { int buffer_alloc_sz; int border; int frame_size; + unsigned int bit_depth; int corrupted; int flags; |