Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
c6c3b26a
Commit
c6c3b26a
authored
Jan 06, 2009
by
Filippo Carone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jvlc: audio is an instance property
parent
f810fad0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
+17
-3
No files found.
bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
View file @
c6c3b26a
...
@@ -48,6 +48,8 @@ public class JVLC
...
@@ -48,6 +48,8 @@ public class JVLC
private
VLM
vlm
;
private
VLM
vlm
;
private
Audio
audio
;
private
volatile
boolean
released
;
private
volatile
boolean
released
;
private
MediaListPlayer
mediaListPlayer
;
private
MediaListPlayer
mediaListPlayer
;
...
@@ -56,17 +58,21 @@ public class JVLC
...
@@ -56,17 +58,21 @@ public class JVLC
{
{
String
[]
args
=
new
String
[]
{};
String
[]
args
=
new
String
[]
{};
instance
=
createInstance
(
args
);
instance
=
createInstance
(
args
);
mediaList
=
new
MediaList
(
this
);
init
();
mediaListPlayer
=
new
MediaListPlayer
(
this
);
mediaListPlayer
.
setMediaList
(
mediaList
);
}
}
public
JVLC
(
String
[]
args
)
public
JVLC
(
String
[]
args
)
{
{
instance
=
createInstance
(
args
);
instance
=
createInstance
(
args
);
init
();
}
private
void
init
()
{
mediaList
=
new
MediaList
(
this
);
mediaList
=
new
MediaList
(
this
);
mediaListPlayer
=
new
MediaListPlayer
(
this
);
mediaListPlayer
=
new
MediaListPlayer
(
this
);
mediaListPlayer
.
setMediaList
(
mediaList
);
mediaListPlayer
.
setMediaList
(
mediaList
);
audio
=
new
Audio
(
this
);
}
}
public
JVLC
(
String
args
)
public
JVLC
(
String
args
)
...
@@ -194,4 +200,12 @@ public class JVLC
...
@@ -194,4 +200,12 @@ public class JVLC
return
mediaListPlayer
;
return
mediaListPlayer
;
}
}
/**
* @return
*/
public
Audio
getAudio
()
{
return
audio
;
}
}
}
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