Skip to content

Commit

Permalink
Add new parsed status enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
caprica committed Jan 9, 2025
1 parent add1cca commit 5648e0c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/main/java/uk/co/caprica/vlcj/media/MediaParsedStatus.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@
*/
public enum MediaParsedStatus {

NONE (0),
PENDING(1),
SKIPPED(2),
FAILED (3),
TIMEOUT(4),
DONE (5);
NONE (0),
PENDING (1),
SKIPPED (2),
FAILED (3),
TIMEOUT (4),
CANCELLED(5),
DONE (6);

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

Expand Down

0 comments on commit 5648e0c

Please sign in to comment.