Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2020-08-23 18:20:07 +0300
committerJames Almer <jamrial@gmail.com>2020-08-23 18:20:44 +0300
commit751f2a27f7d2efe5091ef54d73e5428160a85578 (patch)
tree7866864a5af99ce6c04a8852b6f5a74ee37e17df /libavcodec
parent568b7b2777231cc0be823f270a916f951dcbf0a8 (diff)
avcodec/cbs_av1: fix storage size for render_{width,height}_minus_1
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cbs_av1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cbs_av1.h b/libavcodec/cbs_av1.h
index f5fed220a5..704a231209 100644
--- a/libavcodec/cbs_av1.h
+++ b/libavcodec/cbs_av1.h
@@ -158,8 +158,8 @@ typedef struct AV1RawFrameHeader {
uint8_t use_superres;
uint8_t coded_denom;
uint8_t render_and_frame_size_different;
- uint8_t render_width_minus_1;
- uint8_t render_height_minus_1;
+ uint16_t render_width_minus_1;
+ uint16_t render_height_minus_1;
uint8_t found_ref[AV1_REFS_PER_FRAME];