Commit 7207665c by Drew Hill Committed by Oliver Woodman

flip flag values to their proper names so that trackselector parameters can be useful

parent f2f149ad
......@@ -616,10 +616,10 @@ public final class MatroskaExtractor implements Extractor {
currentTrack.number = (int) value;
break;
case ID_FLAG_DEFAULT:
currentTrack.flagForced = value == 1;
currentTrack.flagDefault = value == 1;
break;
case ID_FLAG_FORCED:
currentTrack.flagDefault = value == 1;
currentTrack.flagForced = value == 1;
break;
case ID_TRACK_TYPE:
currentTrack.type = (int) value;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment