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
6084cd05
Commit
6084cd05
authored
Jun 19, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Java: input->media_instance changes.
parent
0112e7d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
bindings/java/src/input-jni.cc
bindings/java/src/input-jni.cc
+8
-8
No files found.
bindings/java/src/input-jni.cc
View file @
6084cd05
...
...
@@ -38,7 +38,7 @@ JNIEXPORT jlong JNICALL Java_org_videolan_jvlc_Input__1getLength (JNIEnv *env, j
GET_INPUT_THREAD
;
res
=
libvlc_
input
_get_length
(
input
,
exception
);
res
=
libvlc_
media_instance
_get_length
(
input
,
exception
);
CHECK_EXCEPTION_FREE
;
return
res
;
...
...
@@ -51,7 +51,7 @@ JNIEXPORT jfloat JNICALL Java_org_videolan_jvlc_Input__1getPosition (JNIEnv *env
GET_INPUT_THREAD
;
res
=
libvlc_
input
_get_position
(
input
,
exception
);
res
=
libvlc_
media_instance
_get_position
(
input
,
exception
);
CHECK_EXCEPTION_FREE
;
return
res
;
...
...
@@ -64,7 +64,7 @@ JNIEXPORT jlong JNICALL Java_org_videolan_jvlc_Input__1getTime (JNIEnv *env, job
GET_INPUT_THREAD
;
res
=
libvlc_
input
_get_time
(
input
,
exception
);
res
=
libvlc_
media_instance
_get_time
(
input
,
exception
);
CHECK_EXCEPTION_FREE
;
return
res
;
...
...
@@ -77,7 +77,7 @@ JNIEXPORT jfloat JNICALL Java_org_videolan_jvlc_Input__1getFPS (JNIEnv *env, job
GET_INPUT_THREAD
;
res
=
libvlc_
input
_get_fps
(
input
,
exception
);
res
=
libvlc_
media_instance
_get_fps
(
input
,
exception
);
CHECK_EXCEPTION_FREE
;
return
res
;
...
...
@@ -89,7 +89,7 @@ JNIEXPORT void JNICALL Java_org_videolan_jvlc_Input__1setTime (JNIEnv *env, jobj
GET_INPUT_THREAD
;
libvlc_
input
_set_time
(
input
,
time
,
exception
);
libvlc_
media_instance
_set_time
(
input
,
time
,
exception
);
CHECK_EXCEPTION_FREE
;
}
...
...
@@ -100,7 +100,7 @@ JNIEXPORT void JNICALL Java_org_videolan_jvlc_Input__1setPosition (JNIEnv *env,
GET_INPUT_THREAD
;
libvlc_
input
_set_position
(
input
,
position
,
exception
);
libvlc_
media_instance
_set_position
(
input
,
position
,
exception
);
CHECK_EXCEPTION_FREE
;
}
...
...
@@ -111,7 +111,7 @@ JNIEXPORT jboolean JNICALL Java_org_videolan_jvlc_Input__1isPlaying (JNIEnv *env
GET_INPUT_THREAD
;
res
=
libvlc_
input
_will_play
(
input
,
exception
);
res
=
libvlc_
media_instance
_will_play
(
input
,
exception
);
CHECK_EXCEPTION_FREE
;
return
res
;
...
...
@@ -124,7 +124,7 @@ JNIEXPORT jboolean JNICALL Java_org_videolan_jvlc_Input__1hasVout (JNIEnv *env,
GET_INPUT_THREAD
;
res
=
libvlc_
input
_has_vout
(
input
,
exception
);
res
=
libvlc_
media_instance
_has_vout
(
input
,
exception
);
CHECK_EXCEPTION_FREE
;
return
res
;
...
...
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