diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-10-05 22:58:50 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-10-08 18:17:50 +0100 |
commit | 65875a8b3b079752da25a61ec188d2e3d90a569f (patch) | |
tree | c81197047842d30e47843889e9a019d423f9a02b /libavcodec/vp8.h | |
parent | 0d8a3656ba4c0ae8e4e0c91ff6b07d72a317f9f6 (diff) | |
download | ffmpeg-65875a8b3b079752da25a61ec188d2e3d90a569f.tar.gz |
vp8: initialize color space and range properties
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 365e7b76cb..2919a143af 100644 --- a/libavcodec/vp8.h +++ b/libavcodec/vp8.h @@ -264,6 +264,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. |