Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
88ff21f1
Commit
88ff21f1
authored
Apr 07, 2008
by
Filippo Carone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLM class almost done
parent
d6339e0b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
87 additions
and
1 deletion
+87
-1
bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
+17
-0
bindings/java/core/src/main/java/org/videolan/jvlc/VLM.java
bindings/java/core/src/main/java/org/videolan/jvlc/VLM.java
+9
-1
bindings/java/core/src/main/java/org/videolan/jvlc/internal/LibVlc.java
...core/src/main/java/org/videolan/jvlc/internal/LibVlc.java
+2
-0
bindings/java/core/src/test/java/org/videolan/jvlc/VLMTest.java
...gs/java/core/src/test/java/org/videolan/jvlc/VLMTest.java
+59
-0
No files found.
bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
View file @
88ff21f1
...
...
@@ -46,6 +46,8 @@ public class JVLC
private
MediaList
mediaList
;
private
VLM
vlm
;
private
volatile
boolean
released
;
public
JVLC
()
...
...
@@ -96,6 +98,16 @@ public class JVLC
return
new
Logger
(
this
);
}
public
VLM
getVLM
()
{
if
(
vlm
!=
null
)
{
vlm
.
release
();
}
this
.
vlm
=
new
VLM
(
this
);
return
vlm
;
}
public
LoggerVerbosityLevel
getLogVerbosity
()
{
libvlc_exception_t
exception
=
new
libvlc_exception_t
();
...
...
@@ -136,6 +148,11 @@ public class JVLC
if
(!
released
)
{
released
=
true
;
if
(
vlm
!=
null
)
{
vlm
.
release
();
vlm
=
null
;
}
libvlc
.
libvlc_release
(
instance
);
}
}
...
...
bindings/java/core/src/main/java/org/videolan/jvlc/VLM.java
View file @
88ff21f1
...
...
@@ -30,7 +30,6 @@ import org.videolan.jvlc.internal.LibVlc.libvlc_exception_t;
public
class
VLM
{
private
JVLC
jvlc
;
public
VLM
(
JVLC
jvlc
)
...
...
@@ -140,5 +139,14 @@ public class VLM
jvlc
.
getLibvlc
().
libvlc_vlm_show_media
(
jvlc
.
getInstance
(),
name
,
exception
);
}
/**
*
*/
public
void
release
()
{
libvlc_exception_t
exception
=
new
libvlc_exception_t
();
jvlc
.
getLibvlc
().
libvlc_vlm_release
(
jvlc
.
getInstance
(),
exception
);
}
}
bindings/java/core/src/main/java/org/videolan/jvlc/internal/LibVlc.java
View file @
88ff21f1
...
...
@@ -529,6 +529,8 @@ public interface LibVlc extends Library
String
libvlc_vlm_show_media
(
LibVlcInstance
p_instance
,
String
psz_name
,
libvlc_exception_t
p_e
);
void
libvlc_vlm_release
(
LibVlcInstance
p_instance
,
libvlc_exception_t
p_e
);
// event manager
public
static
interface
LibVlcCallback
extends
Callback
...
...
bindings/java/core/src/test/java/org/videolan/jvlc/VLMTest.java
0 → 100644
View file @
88ff21f1
/*****************************************************************************
* VLMTest.java: VLC Java Bindings
*****************************************************************************
* Copyright (C) 1998-2008 the VideoLAN team
*
* Authors: Filippo Carone <filippo@carone.org>
*
*
* $Id $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
package
org.videolan.jvlc
;
import
org.junit.After
;
import
org.junit.Before
;
import
org.junit.Test
;
public
class
VLMTest
{
private
JVLC
jvlc
;
private
String
mrl
=
getClass
().
getResource
(
"/raffa_voice.ogg"
).
getFile
();
@Before
public
void
setup
()
{
jvlc
=
new
JVLC
(
"-I dummy --aout=dummy --vout=dummy"
);
jvlc
.
setLogVerbosity
(
LoggerVerbosityLevel
.
INFO
);
}
@After
public
void
tearDown
()
{
jvlc
.
release
();
}
@Test
public
void
testPlayMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
vlm
.
playMedia
(
mrl
);
}
}
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