Skip to content
Snippets Groups Projects
Commit 60469dee authored by Frank Bossen's avatar Frank Bossen
Browse files

Fix initializers

Addresses a compilation error reported by gcc 9.1
parent 11ca3b25
No related branches found
No related tags found
1 merge request!815Fix initializers
...@@ -55,6 +55,9 @@ PartLevel::PartLevel() ...@@ -55,6 +55,9 @@ PartLevel::PartLevel()
, canQtSplit ( true ) , canQtSplit ( true )
, qgEnable ( true ) , qgEnable ( true )
, qgChromaEnable ( true ) , qgChromaEnable ( true )
#if JVET_O0050_LOCAL_DUAL_TREE
, modeType ( MODE_TYPE_ALL )
#endif
{ {
} }
...@@ -69,6 +72,9 @@ PartLevel::PartLevel( const PartSplit _split, const Partitioning& _parts ) ...@@ -69,6 +72,9 @@ PartLevel::PartLevel( const PartSplit _split, const Partitioning& _parts )
, canQtSplit ( true ) , canQtSplit ( true )
, qgEnable ( true ) , qgEnable ( true )
, qgChromaEnable ( true ) , qgChromaEnable ( true )
#if JVET_O0050_LOCAL_DUAL_TREE
, modeType ( MODE_TYPE_ALL )
#endif
{ {
} }
...@@ -83,6 +89,9 @@ PartLevel::PartLevel( const PartSplit _split, Partitioning&& _parts ) ...@@ -83,6 +89,9 @@ PartLevel::PartLevel( const PartSplit _split, Partitioning&& _parts )
, canQtSplit ( true ) , canQtSplit ( true )
, qgEnable ( true ) , qgEnable ( true )
, qgChromaEnable ( true ) , qgChromaEnable ( true )
#if JVET_O0050_LOCAL_DUAL_TREE
, modeType ( MODE_TYPE_ALL )
#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