Changeset 2a1870a5c5b2c9592379335224b431c54e399e76
- Timestamp:
- 05/01/08 21:19:51
(4 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209669591 +0300
- git-parent:
[6673258639e376114376094236a511d03be5a95e]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209669591 +0300
- Message:
Use int64_t directly within plugins rather than vlc_int64_t
I wonder why we need this (in libvlc-control) by the way...?
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
r2a1870a |
|
| 115 | 115 | { |
|---|
| 116 | 116 | double f = luaL_checknumber( L, -1 ); |
|---|
| 117 | | val->i_time = (vlc_int64_t)(f*1000000.); |
|---|
| | 117 | val->i_time = (int64_t)(f*1000000.); |
|---|
| 118 | 118 | } |
|---|
| 119 | 119 | break; |
|---|