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

Merge branch 'alf_slice_fix' into 'master'

Bug fix: Initiliaze cu alf flags only for first slice of the picture

See merge request !375
parents 03e5147c 1a765e21
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,10 @@ void DecSlice::decompressSlice( Slice* slice, InputBitstream* bitstream )
cs.picture->resizeSAO(cs.pcv->sizeInCtus, 0);
cs.picture->resizeAlfCtuEnableFlag( cs.pcv->sizeInCtus );
if (slice->getSliceCurStartCtuTsAddr() == 0)
{
cs.picture->resizeAlfCtuEnableFlag( cs.pcv->sizeInCtus );
}
const unsigned numSubstreams = slice->getNumberOfSubstreamSizes() + 1;
......
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