diff options
author | Mathieu Velten <matmaul@gmail.com> | 2016-12-05 21:32:58 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2016-12-05 22:12:26 +0000 |
commit | b1f630f1a6b0b4bae56ae17f98647550e80114f5 (patch) | |
tree | d4db41bc6ac019e9342e6b55c9cb0a52e2cea2cf /libavcodec/vp9.h | |
parent | 46e75617d9700be8840a843237f8571061a63a8e (diff) | |
download | ffmpeg-b1f630f1a6b0b4bae56ae17f98647550e80114f5.tar.gz |
avcodec/vp9: move bpp to the shared context for use in hwaccel
Signed-off-by: Mark Thompson <sw@jkqxz.net>
Diffstat (limited to 'libavcodec/vp9.h')
-rw-r--r-- | libavcodec/vp9.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp9.h b/libavcodec/vp9.h index df5bd4d85c..89b1bd3e4c 100644 --- a/libavcodec/vp9.h +++ b/libavcodec/vp9.h @@ -137,6 +137,7 @@ typedef struct VP9Frame { typedef struct VP9BitstreamHeader { // bitstream header uint8_t profile; + uint8_t bpp; uint8_t keyframe; uint8_t invisible; uint8_t errorres; |