diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 02:36:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 02:36:58 +0200 |
commit | 3bc86462a2ae1ec03c1a8ada49c70e34a22520e9 (patch) | |
tree | bfa053ac435ecf970cac2ad1f50ce4d28728ee88 /libavcodec/vp8.h | |
parent | 349a32c436d9511fe786c761cc2728f5b5efea0e (diff) | |
parent | 65875a8b3b079752da25a61ec188d2e3d90a569f (diff) | |
download | ffmpeg-3bc86462a2ae1ec03c1a8ada49c70e34a22520e9.tar.gz |
Merge commit '65875a8b3b079752da25a61ec188d2e3d90a569f'
* commit '65875a8b3b079752da25a61ec188d2e3d90a569f':
vp8: initialize color space and range properties
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp8.h')
-rw-r--r-- | libavcodec/vp8.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vp8.h b/libavcodec/vp8.h index 83729c8b92..b650892735 100644 --- a/libavcodec/vp8.h +++ b/libavcodec/vp8.h @@ -266,6 +266,9 @@ typedef struct VP8Context { vp8_mc_func put_pixels_tab[3][3][3]; VP8Frame frames[5]; + uint8_t colorspace; ///< 0 is the only value allowed (meaning bt601) + uint8_t fullrange; ///< whether we can skip clamping in dsp functions + int num_jobs; /** * This describes the macroblock memory layout. |