summaryrefslogtreecommitdiff
path: root/hevc.h
diff options
context:
space:
mode:
authorMikhail Burakov <mburakov@mailbox.org>2023-05-28 19:02:50 +0200
committerMikhail Burakov <mburakov@mailbox.org>2023-05-29 12:15:55 +0200
commit6ac7270839edcb8d839f2e40debbaeadf69063c5 (patch)
tree102ca62814e8f475cf738322adeffb3be3f1a66b /hevc.h
parent0e8ea5af49dd0b68cd4339d28ce81b154b418f9a (diff)
Clean up the mess in encode2 implementation
Diffstat (limited to 'hevc.h')
-rw-r--r--hevc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hevc.h b/hevc.h
index 4f3752a..e82f32c 100644
--- a/hevc.h
+++ b/hevc.h
@@ -73,11 +73,11 @@ struct MoreSliceParamerters {
struct NegativePics {
uint32_t delta_poc_s0_minus1;
bool used_by_curr_pic_s0_flag;
- }* negative_pics;
+ } const* negative_pics;
struct PositivePics {
uint32_t delta_poc_s1_minus1;
bool used_by_curr_pic_s1_flag;
- }* positive_pics;
+ } const* positive_pics;
};
void PackVideoParameterSetNalUnit(struct Bitstream* bitstream,