diff options
author | James Almer <jamrial@gmail.com> | 2019-07-30 11:55:26 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-08-05 15:02:45 -0300 |
commit | 5152602ba8f49ceb58aa89fcad8e6aaa9a6a27ff (patch) | |
tree | 2b99947c2be69382004d4cd4683dad090fa36980 /libavformat/av1.h | |
parent | 6e53b43d487e38be7fd0c5910264433216ddcd56 (diff) | |
download | ffmpeg-5152602ba8f49ceb58aa89fcad8e6aaa9a6a27ff.tar.gz |
avformat/av1: combine high_bitdepth and twelve_bit into a single bitdepth value
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 9a44ec94100a647df6920c65cccdd605a2e6865b)
Diffstat (limited to 'libavformat/av1.h')
-rw-r--r-- | libavformat/av1.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/av1.h b/libavformat/av1.h index 308bff4818..441b6c9898 100644 --- a/libavformat/av1.h +++ b/libavformat/av1.h @@ -29,8 +29,7 @@ typedef struct AV1SequenceParameters { uint8_t profile; uint8_t level; uint8_t tier; - uint8_t high_bitdepth; - uint8_t twelve_bit; + uint8_t bitdepth; uint8_t monochrome; uint8_t chroma_subsampling_x; uint8_t chroma_subsampling_y; |