[vlc-devel] commit: python bindings: fix compilation (Olivier Aubert )

git version control git at videolan.org
Mon Jun 30 19:22:22 CEST 2008


vlc | branch: master | Olivier Aubert <olivier.aubert at liris.cnrs.fr> | Mon Jun 30 19:24:16 2008 +0200| [2641ceaec6a0d5318c8c7cfa5872a97d51611000]

python bindings: fix compilation

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2641ceaec6a0d5318c8c7cfa5872a97d51611000
---

 bindings/python/vlc_mediaplayer.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bindings/python/vlc_mediaplayer.c b/bindings/python/vlc_mediaplayer.c
index 7aeb747..f01cb3d 100644
--- a/bindings/python/vlc_mediaplayer.c
+++ b/bindings/python/vlc_mediaplayer.c
@@ -30,7 +30,7 @@ static PyObject *
 vlcMediaPlayer_get_length( PyObject *self, PyObject *args )
 {
     libvlc_exception_t ex;
-    vlc_int64_t i_ret;
+    int64_t i_ret;
     LIBVLC_TRY;
     i_ret = libvlc_media_player_get_length( LIBVLC_MEDIAPLAYER->p_mp, &ex);
     LIBVLC_EXCEPT;
@@ -41,7 +41,7 @@ static PyObject *
 vlcMediaPlayer_get_time( PyObject *self, PyObject *args )
 {
     libvlc_exception_t ex;
-    vlc_int64_t i_ret;
+    int64_t i_ret;
     LIBVLC_TRY;
     i_ret = libvlc_media_player_get_time( LIBVLC_MEDIAPLAYER->p_mp, &ex);
     LIBVLC_EXCEPT;
@@ -52,7 +52,7 @@ static PyObject *
 vlcMediaPlayer_set_time( PyObject *self, PyObject *args )
 {
     libvlc_exception_t ex;
-    vlc_int64_t i_time;
+    int64_t i_time;
 
     if( !PyArg_ParseTuple( args, "L", &i_time ) )
         return NULL;




More information about the vlc-devel mailing list