Skip to content
Snippets Groups Projects
Commit 96f9b775 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

demux: adaptive: fix aligned segments default

parent 570bf285
No related branches found
No related tags found
No related merge requests found
Pipeline #17368 passed with stage
in 55 minutes and 12 seconds
......@@ -113,7 +113,7 @@ void BaseAdaptationSet::setBitswitchAble(bool b)
bool BaseAdaptationSet::isSegmentAligned() const
{
return segmentAligned.isSet() && segmentAligned.value();
return !segmentAligned.isSet() || segmentAligned.value();
}
bool BaseAdaptationSet::isBitSwitchable() const
......
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