Skip to content

Commit

Permalink
remove cout debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Dec 16, 2024
1 parent 7878686 commit 7b9d980
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions libheif/image-items/tiled.cc
Original file line number Diff line number Diff line change
Expand Up @@ -689,11 +689,6 @@ Error ImageItem_Tiled::add_image_tile(uint32_t tile_x, uint32_t tile_y,

if (image->get_width() != header.get_parameters().tile_width ||
image->get_height() != header.get_parameters().tile_height) {

std::cout << "tx:" << tile_x << " ty:" << tile_y << "\n";
std::cout << image->get_width() << " " << header.get_parameters().tile_width << " | "
<< image->get_height() << " " << header.get_parameters().tile_height <<"\n";

return {heif_error_Usage_error,
heif_suberror_Unspecified,
"Tile image size does not match the specified tile size."};
Expand Down

0 comments on commit 7b9d980

Please sign in to comment.