Skip to content
Snippets Groups Projects
Commit 37a354aa authored by Kai Zhang's avatar Kai Zhang
Browse files

Fix a bug when ENABLE_SPLIT_PARALLELISM is set to be 1

parent 1eb04071
No related branches found
No related tags found
1 merge request!1658Fix a bug when ENABLE_SPLIT_PARALLELISM is equal to 1 for JVET-R0064
...@@ -515,7 +515,11 @@ void EncLib::xInitScalingLists( SPS &sps, APS &aps ) ...@@ -515,7 +515,11 @@ void EncLib::xInitScalingLists( SPS &sps, APS &aps )
{ {
getTrQuant( jId )->getQuant()->setUseScalingList( true ); getTrQuant( jId )->getQuant()->setUseScalingList( true );
} }
#if JVET_R0064
sps.setDisableScalingMatrixForLfnstBlks(getDisableScalingMatrixForLfnstBlks());
#else
aps.getScalingList().setDisableScalingMatrixForLfnstBlks(getDisableScalingMatrixForLfnstBlks()); aps.getScalingList().setDisableScalingMatrixForLfnstBlks(getDisableScalingMatrixForLfnstBlks());
#endif
#endif #endif
} }
else if(getUseScalingListId() == SCALING_LIST_FILE_READ) else if(getUseScalingListId() == SCALING_LIST_FILE_READ)
......
  • When I enable ENABLE_SPLIT_PARALLELISM and then set --NumSplitThreads=2 or higher I get the Error: In function "coding_tree" treeType mismatch and it then EncoderApp fails to encode

    Edited by chris baxxtor
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