From d7b0819ff0575a9179eaea0e7afc328f81e3df3e Mon Sep 17 00:00:00 2001 From: klirktag <78051485+klirktag@users.noreply.github.com> Date: Tue, 14 Nov 2023 00:06:31 +0100 Subject: [PATCH] patterns/mp4: Make handler_type into a char[4], which reflects how it is used (#193) make handler_type into a char[4], which reflects how it is used --- patterns/mp4.hexpat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/mp4.hexpat b/patterns/mp4.hexpat index e642ae9..f082aa9 100644 --- a/patterns/mp4.hexpat +++ b/patterns/mp4.hexpat @@ -147,7 +147,7 @@ struct DataInformationBox : BaseBox { struct HandlerBox : FullBox { u32 component_type; - u32 handler_type; + char handler_type[4]; u32 reserved[3]; char name[endOffset - $]; };