Skip to content

Commit

Permalink
allow irot transforms with angle=0
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 8, 2024
1 parent db2fd13 commit fde0990
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libheif/image-items/image_item.cc
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,8 @@ Error ImageItem::transform_requested_tile_position_to_original_tile_position(uin
tile_y = tiling.num_rows - 1 - tile_y;
break;
}
case 0:
break;
default:
assert(false);
break;
Expand Down

0 comments on commit fde0990

Please sign in to comment.