Skip to content
Snippets Groups Projects
Commit 21072f0e authored by Brian Heng's avatar Brian Heng
Browse files

Fix for Ticket #229 - HLS Byte Alignment Incorrect

parent ecdbee9d
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ public:
protected:
void xReadRbspTrailingBits();
#if JVET_M0101_HLS
bool isByteAligned() { return (m_pcBitstream->getNumBitsUntilByteAligned() != 0 ); }
bool isByteAligned() { return (m_pcBitstream->getNumBitsUntilByteAligned() == 0 ); }
#endif
};
......
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