Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
531
Issue boards
Milestones
Wiki
Code
Merge requests
14
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
dd179fe9
Commit
dd179fe9
authored
8 years ago
by
Thomas Guillem
Browse files
Options
Downloads
Patches
Plain Diff
LibVLC: Media: add Event.getParsedStatus()
parent
0aca42ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libvlc/src/org/videolan/libvlc/Media.java
+17
-0
17 additions, 0 deletions
libvlc/src/org/videolan/libvlc/Media.java
with
17 additions
and
0 deletions
libvlc/src/org/videolan/libvlc/Media.java
+
17
−
0
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
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment