[Android] Fix audio/spu delay cast

Geoffrey Métais git at videolan.org
Fri Feb 20 16:22:47 CET 2015


vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Fri Feb 20 16:17:02 2015 +0100| [47cd5be4d0097776c064998e8ec4714e8eb5ab6c] | committer: Geoffrey Métais

Fix audio/spu delay cast

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=47cd5be4d0097776c064998e8ec4714e8eb5ab6c
---

 libvlc/src/org/videolan/libvlc/LibVLC.java |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libvlc/src/org/videolan/libvlc/LibVLC.java b/libvlc/src/org/videolan/libvlc/LibVLC.java
index d0bd9e7..a0f6bf3 100644
--- a/libvlc/src/org/videolan/libvlc/LibVLC.java
+++ b/libvlc/src/org/videolan/libvlc/LibVLC.java
@@ -672,11 +672,11 @@ public class LibVLC {
 
     public native int setAudioDelay(long delay);
 
-    public native int getAudioDelay();
+    public native long getAudioDelay();
 
     public native int setSpuDelay(long delay);
 
-    public native int getSpuDelay();
+    public native long getSpuDelay();
 
     public static native String nativeToURI(String path);
     



More information about the Android mailing list