Changeset d9752f14c50c932c07c29d9df4ed48b2f3d6d376
- Timestamp:
- 05/10/08 18:19:06
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210436346 +0300
- git-parent:
[b54b2ddbcb094baa736b565e49643098c9514d1f]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210436346 +0300
- Message:
Kill further I64C
I think I'm going to become stricter about NOT merging out-of-sync
patches
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r27d483e |
rd9752f1 |
|
| 565 | 565 | p_spu->p_region->psz_text = strdup(ev->text); /* no leak, this actually gets killed by the core */ |
|---|
| 566 | 566 | p_spu->i_start = p_block->i_pts; |
|---|
| 567 | | p_spu->i_stop = p_block->i_pts + I64C(1000000)*ev->duration*p_sys->ki.gps_denominator/p_sys->ki.gps_numerator; |
|---|
| | 567 | p_spu->i_stop = p_block->i_pts + INT64_C(1000000)*ev->duration*p_sys->ki.gps_denominator/p_sys->ki.gps_numerator; |
|---|
| 568 | 568 | p_spu->b_ephemer = (p_block->i_length == 0); |
|---|
| 569 | 569 | p_spu->b_absolute = false; |
|---|
| r449fd28 |
rd9752f1 |
|
| 205 | 205 | mtime_t i_seconds; |
|---|
| 206 | 206 | |
|---|
| 207 | | i_seconds = var_GetTime( p_input, "length" ) / I64C(1000000 ); |
|---|
| | 207 | i_seconds = var_GetTime( p_input, "length" ) / INT64_C( 1000000 ); |
|---|
| 208 | 208 | secstotimestr( psz_total, i_seconds ); |
|---|
| 209 | 209 | |
|---|
| 210 | | i_seconds = var_GetTime( p_input, "time" ) / I64C(1000000 ); |
|---|
| | 210 | i_seconds = var_GetTime( p_input, "time" ) / INT_64C( 1000000 ); |
|---|
| 211 | 211 | secstotimestr( psz_time, i_seconds ); |
|---|
| 212 | 212 | |
|---|