Changeset 1379ab26f381310cd1fd34664d73a28cc9bf6eb1

Show
Ignore:
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
  • include/vlc_common.h

    r13a7c9a r1379ab2  
    865865/* 64 bits integer constant suffix */ 
    866866#define I64C(x)  INT64_C(x) 
    867 #define UI64C(x) UINT64_C(x) 
    868867 
    869868#if defined(WIN32) || defined(UNDER_CE) 
  • modules/demux/live555.cpp

    ree45d75 r1379ab2  
    15421542    //msg_Dbg( p_demux, "pts: %d", pts.tv_sec ); 
    15431543 
    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) + 
    15451545        (uint64_t)pts.tv_usec; 
    15461546 
    15471547    /* XXX Beurk beurk beurk Avoid having negative value XXX */ 
    1548     i_pts &= UI64C(0x00ffffffffffffff); 
     1548    i_pts &= UINT64_C(0x00ffffffffffffff); 
    15491549 
    15501550    if( tk->b_quicktime && tk->p_es == NULL )