Skip to content

Commit

Permalink
remove double DataExtent in Decoder class (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 22, 2024
1 parent 4a53be8 commit 3e82934
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions libheif/codecs/jpeg2000_dec.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ class Decoder_JPEG2000 : public Decoder

heif_compression_format get_compression_format() const override { return heif_compression_JPEG2000; }

void set_data_extent(DataExtent extent) { m_data_extent = std::move(extent); }

int get_luma_bits_per_pixel() const override;

int get_chroma_bits_per_pixel() const override;
Expand All @@ -53,7 +51,6 @@ class Decoder_JPEG2000 : public Decoder

private:
const std::shared_ptr<const Box_j2kH> m_j2kH;
DataExtent m_data_extent;
};

#endif

0 comments on commit 3e82934

Please sign in to comment.