summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-11-10 22:51:18 -0300
committerJames Almer <jamrial@gmail.com>2018-11-14 20:48:29 -0300
commit79831f4531d98c3c1eab96c10f1135d08abef5f3 (patch)
treee80c7a2b008c42061ba2d7317007ba6bfec5c31d
parent2ce3a48f30fe3cec7153aa3f18a1012a366aca3a (diff)
avcodec/cbs_av1: fix storage size for segmentation_params feature_value fields
The valid range is -255 to 255. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavcodec/cbs_av1.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cbs_av1.h b/libavcodec/cbs_av1.h
index f662265f75..84622ed189 100644
--- a/libavcodec/cbs_av1.h
+++ b/libavcodec/cbs_av1.h
@@ -210,7 +210,7 @@ typedef struct AV1RawFrameHeader {
uint8_t segmentation_temporal_update;
uint8_t segmentation_update_data;
uint8_t feature_enabled[AV1_MAX_SEGMENTS][AV1_SEG_LVL_MAX];
- uint8_t feature_value[AV1_MAX_SEGMENTS][AV1_SEG_LVL_MAX];
+ int16_t feature_value[AV1_MAX_SEGMENTS][AV1_SEG_LVL_MAX];
uint8_t delta_q_present;
uint8_t delta_q_res;