Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Ewout ter Hoeven
VLC-Android
Commits
dd179fe9
Commit
dd179fe9
authored
May 24, 2016
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LibVLC: Media: add Event.getParsedStatus()
parent
0aca42ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
libvlc/src/org/videolan/libvlc/Media.java
libvlc/src/org/videolan/libvlc/Media.java
+17
-0
No files found.
libvlc/src/org/videolan/libvlc/Media.java
View file @
dd179fe9
...
...
@@ -51,6 +51,14 @@ public class Media extends VLCObject<Media.Event> {
public
int
getMetaId
()
{
return
(
int
)
arg1
;
}
/**
* Get the ParsedStatus in case of {@link Event#ParsedChanged} event
* @return {@link Media.ParsedStatus}
*/
public
int
getParsedStatus
()
{
return
(
int
)
arg1
;
}
}
public
interface
EventListener
extends
VLCEvent
.
Listener
<
Media
.
Event
>
{}
...
...
@@ -125,6 +133,15 @@ public class Media extends VLCObject<Media.Event> {
public
static
final
int
DoInteract
=
0x08
;
}
/*
* see libvlc_media_parsed_status_t
*/
public
static
class
ParsedStatus
{
public
static
final
int
Skipped
=
1
;
public
static
final
int
Failed
=
2
;
public
static
final
int
Done
=
3
;
}
/**
* see libvlc_media_track_t
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment