Skip to content

Commit

Permalink
Merge pull request #1298 from bradh/debug_output_2024-09-03
Browse files Browse the repository at this point in the history
bitstream: remove debug output
  • Loading branch information
farindk authored Sep 22, 2024
2 parents 3115009 + 6df792d commit fbfceeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libheif/bitstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,16 +102,16 @@ class StreamReader_istream : public StreamReader
bool seek(uint64_t position) override;

uint64_t request_range(uint64_t start, uint64_t end_pos) override {
std::cout << "[istream] request_range " << start << " - " << end_pos << "\n";
// std::cout << "[istream] request_range " << start << " - " << end_pos << "\n";
return end_pos;
}

void release_range(uint64_t start, uint64_t end_pos) override {
std::cout << "[istream] release_range " << start << " - " << end_pos << "\n";
// std::cout << "[istream] release_range " << start << " - " << end_pos << "\n";
}

void preload_range_hint(uint64_t start, uint64_t end_pos) override {
std::cout << "[istream] preload_range_hint " << start << " - " << end_pos << "\n";
// std::cout << "[istream] preload_range_hint " << start << " - " << end_pos << "\n";
}

private:
Expand Down

0 comments on commit fbfceeb

Please sign in to comment.