[Android] Media: fix typo
Thomas Guillem
git at videolan.org
Fri Jul 10 19:20:34 CEST 2015
vlc-ports/android | branch: master | Thomas Guillem <thomas at gllm.fr> | Fri Jul 10 17:24:10 2015 +0200| [f681f25b83da0e5c35d1e1136ae8e74591920b3f] | committer: Thomas Guillem
Media: fix typo
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=f681f25b83da0e5c35d1e1136ae8e74591920b3f
---
libvlc/src/org/videolan/libvlc/Media.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libvlc/src/org/videolan/libvlc/Media.java b/libvlc/src/org/videolan/libvlc/Media.java
index bfb7da2..2f416d1 100644
--- a/libvlc/src/org/videolan/libvlc/Media.java
+++ b/libvlc/src/org/videolan/libvlc/Media.java
@@ -277,7 +277,7 @@ public class Media extends VLCObject<Media.Event> {
* @param fd file descriptor object
*/
public Media(LibVLC libVLC, FileDescriptor fd) {
- nativeNewFromFD(libVLC, fd);
+ nativeNewFromFd(libVLC, fd);
mUri = UriFromMrl(nativeGetMrl());
mType = nativeGetType();
}
@@ -604,7 +604,7 @@ public class Media extends VLCObject<Media.Event> {
/* JNI */
private native void nativeNewFromPath(LibVLC libVLC, String path);
private native void nativeNewFromLocation(LibVLC libVLC, String location);
- private native void nativeNewFromFD(LibVLC libVLC, FileDescriptor fd);
+ private native void nativeNewFromFd(LibVLC libVLC, FileDescriptor fd);
private native void nativeNewFromMediaList(MediaList ml, int index);
private native void nativeRelease();
private native boolean nativeParseAsync(int flags);
More information about the Android
mailing list