Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix 'integer constant is too large' in x86 build
  • Loading branch information
virtualdj authored and perexg committed Jan 18, 2016
1 parent eabfb52 commit 165f390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/parser_hevc.c
Expand Up @@ -828,7 +828,7 @@ static void hvcc_init(HEVCDecoderConfigurationRecord *hvcc)
* the ProfileTierLevel parsing code will unset them when needed.
*/
hvcc->general_profile_compatibility_flags = 0xffffffff;
hvcc->general_constraint_indicator_flags = 0xffffffffffff;
hvcc->general_constraint_indicator_flags = 0xffffffffffffLL;

/*
* Initialize this field with an invalid value which can be used to detect
Expand Down

0 comments on commit 165f390

Please sign in to comment.