Skip to content

Commit

Permalink
Native parsed flag changes
Browse files Browse the repository at this point in the history
  • Loading branch information
caprica committed Apr 4, 2023
1 parent b87f54c commit e030a1f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/java/uk/co/caprica/vlcj/media/ParseFlag.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,34 +30,34 @@ public enum ParseFlag {
/**
* Parse media if it's a local file
*/
PARSE_LOCAL(0x00),
PARSE_LOCAL(0x01),

/**
* Parse media even if it's a network file
*/
PARSE_NETWORK(0x01),
PARSE_NETWORK(0x02),

/**
* Force parsing of the media event if it would be skipped
*/
PARSE_FORCED(0x04),

/**
* Fetch meta and covert art using local resources
*/
FETCH_LOCAL(0x02),
FETCH_LOCAL(0x08),

/**
* Fetch meta and covert art using network resources
*/
FETCH_NETWORK(0x04),
FETCH_NETWORK(0x10),

/**
* Interact with the user (via libvlc_dialog_cbs) when preparsing this item
* (and not its sub items). Set this flag in order to receive a callback
* when the input is asking for credentials.
*/
DO_INTERACT(0x08),

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

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

Expand Down

0 comments on commit e030a1f

Please sign in to comment.