Skip to content
Snippets Groups Projects
Commit 917e357e authored by Vadim Seregin's avatar Vadim Seregin
Browse files

Merge branch 'fixHDR' into 'master'

fix: compilation with EXTENSION_HDRTOOLS=1

See merge request ecm/ECM!309
parents 5ac27b18 6225e7d4
No related branches found
No related tags found
No related merge requests found
......@@ -364,6 +364,11 @@ const CPelUnitBuf Picture::getTrueOrigBuf() const { return M
PelBuf Picture::getTrueOrigBuf(const CompArea &blk) { return getBuf(blk, PIC_TRUE_ORIGINAL); }
const CPelBuf Picture::getTrueOrigBuf(const CompArea &blk) const { return getBuf(blk, PIC_TRUE_ORIGINAL); }
PelBuf Picture::getTrueOrigBuf(const ComponentID compID) { return getBuf(compID, PIC_TRUE_ORIGINAL); }
const CPelBuf Picture::getTrueOrigBuf(const ComponentID compID) const { return getBuf(compID, PIC_TRUE_ORIGINAL); }
PelUnitBuf Picture::getFilteredOrigBuf() { return M_BUFS(0, PIC_FILTERED_ORIGINAL); }
const CPelUnitBuf Picture::getFilteredOrigBuf() const { return M_BUFS(0, PIC_FILTERED_ORIGINAL); }
PelBuf Picture::getFilteredOrigBuf(const CompArea &blk) { return getBuf(blk, PIC_FILTERED_ORIGINAL); }
......
......@@ -122,6 +122,9 @@ struct Picture : public UnitArea
PelBuf getTrueOrigBuf(const CompArea &blk);
const CPelBuf getTrueOrigBuf(const CompArea &blk) const;
PelBuf getTrueOrigBuf(const ComponentID compID);
const CPelBuf getTrueOrigBuf(const ComponentID compID) const;
PelUnitBuf getFilteredOrigBuf();
const CPelUnitBuf getFilteredOrigBuf() const;
PelBuf getFilteredOrigBuf(const CompArea &blk);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment