Changeset 2641ceaec6a0d5318c8c7cfa5872a97d51611000
- Timestamp:
- 30/06/08 19:24:16
(3 months ago)
- Author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr>
- git-committer:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1214846656 +0200
- git-parent:
[a417ec82d9a793a2681be75be9be719e4972cfce]
- git-author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1214846656 +0200
- Message:
python bindings: fix compilation
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r241b228 |
r2641cea |
|
| 31 | 31 | { |
|---|
| 32 | 32 | libvlc_exception_t ex; |
|---|
| 33 | | vlc_int64_t i_ret; |
|---|
| | 33 | int64_t i_ret; |
|---|
| 34 | 34 | LIBVLC_TRY; |
|---|
| 35 | 35 | i_ret = libvlc_media_player_get_length( LIBVLC_MEDIAPLAYER->p_mp, &ex); |
|---|
| … | … | |
| 42 | 42 | { |
|---|
| 43 | 43 | libvlc_exception_t ex; |
|---|
| 44 | | vlc_int64_t i_ret; |
|---|
| | 44 | int64_t i_ret; |
|---|
| 45 | 45 | LIBVLC_TRY; |
|---|
| 46 | 46 | i_ret = libvlc_media_player_get_time( LIBVLC_MEDIAPLAYER->p_mp, &ex); |
|---|
| … | … | |
| 53 | 53 | { |
|---|
| 54 | 54 | libvlc_exception_t ex; |
|---|
| 55 | | vlc_int64_t i_time; |
|---|
| | 55 | int64_t i_time; |
|---|
| 56 | 56 | |
|---|
| 57 | 57 | if( !PyArg_ParseTuple( args, "L", &i_time ) ) |
|---|