Skip to content
Snippets Groups Projects
Commit bb8ce740 authored by Karsten Suehring's avatar Karsten Suehring
Browse files

Merge branch 'fix_1080' into 'master'

Default initialize NALUnit when reading it

See merge request jvet/VVCSoftware_VTM!1649
parents 06ff9552 3f934b61
Branches JVET_O0219
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ class InputNALUnit : public NALUnit
public:
InputNALUnit(const InputNALUnit &src) : NALUnit(src), m_Bitstream(src.m_Bitstream) {};
InputNALUnit() : m_Bitstream() {};
InputNALUnit() : NALUnit(NAL_UNIT_INVALID), m_Bitstream() {};
virtual ~InputNALUnit() { }
const InputBitstream &getBitstream() const { return m_Bitstream; }
InputBitstream &getBitstream() { return m_Bitstream; }
......
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