Skip to content

Commit

Permalink
Add new native 'no skip' parse flag
Browse files Browse the repository at this point in the history
  • Loading branch information
caprica committed Jan 13, 2023
1 parent 063fd25 commit 8843556
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/uk/co/caprica/vlcj/media/ParseFlag.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ public enum ParseFlag {
* (and not its sub items). Set this flag in order to receive a callback
* when the input is asking for credentials.
*/
DO_INTERACT(0x08);
DO_INTERACT(0x08),

/**
* Force parsing the media even if it would be skipped.
*/
NO_SKIP(0x10);

private static final Map<Integer, ParseFlag> INT_MAP = new HashMap<Integer, ParseFlag>();

Expand Down

0 comments on commit 8843556

Please sign in to comment.