diff options
author | James Almer <jamrial@gmail.com> | 2019-07-30 11:48:38 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-08-03 12:33:14 -0300 |
commit | 0d597a69bad6e98d088f4c17989abd6a6a34084d (patch) | |
tree | f3bf3b24efed6e0b79b4e1a591c5c6c6a31591cf /libavformat/av1.h | |
parent | 68e48e5d97c102ea02c86e2922f3b8b42ffad07d (diff) | |
download | ffmpeg-0d597a69bad6e98d088f4c17989abd6a6a34084d.tar.gz |
avformat/av1: rename some AV1SequenceParameters fields
Cosmetic change.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/av1.h')
-rw-r--r-- | libavformat/av1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/av1.h b/libavformat/av1.h index e3ee667eb3..c07fb740e9 100644 --- a/libavformat/av1.h +++ b/libavformat/av1.h @@ -26,9 +26,9 @@ #include "avio.h" typedef struct AV1SequenceParameters { - uint8_t seq_profile; - uint8_t seq_level_idx_0; - uint8_t seq_tier_0; + uint8_t profile; + uint8_t level; + uint8_t tier; uint8_t high_bitdepth; uint8_t twelve_bit; uint8_t monochrome; |