Skip to content

Commit

Permalink
change type for inline mask data (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 9, 2023
1 parent 64100f2 commit 823e89e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libheif/heif.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3374,7 +3374,7 @@ struct heif_error heif_region_item_add_region_inline_mask_data(struct heif_regio
int32_t x, int32_t y,
uint32_t width, uint32_t height,
uint8_t* mask_data,
unsigned long mask_data_len,
size_t mask_data_len,
struct heif_region** out_region)
{
auto region = std::make_shared<RegionGeometry_InlineMask>();
Expand Down
2 changes: 1 addition & 1 deletion libheif/heif.h
Original file line number Diff line number Diff line change
Expand Up @@ -3047,7 +3047,7 @@ struct heif_error heif_region_item_add_region_inline_mask_data(struct heif_regio
int32_t x, int32_t y,
uint32_t width, uint32_t height,
uint8_t* mask_data,
unsigned long mask_data_len,
size_t mask_data_len,
struct heif_region** out_region);

/**
Expand Down

0 comments on commit 823e89e

Please sign in to comment.