Changeset 1379ab26f381310cd1fd34664d73a28cc9bf6eb1
- Timestamp:
- 05/01/08 21:05:41
(4 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209668741 +0300
- git-parent:
[13a7c9af3c209bbd450925672162aff2f40a2494]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209668741 +0300
- Message:
Remove UI64_C
Turns out it was only used once in the whole tree.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r13a7c9a |
r1379ab2 |
|
| 865 | 865 | /* 64 bits integer constant suffix */ |
|---|
| 866 | 866 | #define I64C(x) INT64_C(x) |
|---|
| 867 | | #define UI64C(x) UINT64_C(x) |
|---|
| 868 | 867 | |
|---|
| 869 | 868 | #if defined(WIN32) || defined(UNDER_CE) |
|---|
| ree45d75 |
r1379ab2 |
|
| 1542 | 1542 | //msg_Dbg( p_demux, "pts: %d", pts.tv_sec ); |
|---|
| 1543 | 1543 | |
|---|
| 1544 | | int64_t i_pts = (uint64_t)pts.tv_sec * UI64C(1000000) + |
|---|
| | 1544 | int64_t i_pts = (uint64_t)pts.tv_sec * UINT64_C(1000000) + |
|---|
| 1545 | 1545 | (uint64_t)pts.tv_usec; |
|---|
| 1546 | 1546 | |
|---|
| 1547 | 1547 | /* XXX Beurk beurk beurk Avoid having negative value XXX */ |
|---|
| 1548 | | i_pts &= UI64C(0x00ffffffffffffff); |
|---|
| | 1548 | i_pts &= UINT64_C(0x00ffffffffffffff); |
|---|
| 1549 | 1549 | |
|---|
| 1550 | 1550 | if( tk->b_quicktime && tk->p_es == NULL ) |
|---|