Changeset d9752f14c50c932c07c29d9df4ed48b2f3d6d376

Show
Ignore:
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
  • modules/codec/kate.c

    r27d483e rd9752f1  
    565565    p_spu->p_region->psz_text = strdup(ev->text); /* no leak, this actually gets killed by the core */ 
    566566    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; 
    568568    p_spu->b_ephemer = (p_block->i_length == 0); 
    569569    p_spu->b_absolute = false; 
  • modules/gui/wxwidgets/dialogs/vlm/vlm_slider_manager.cpp

    r449fd28 rd9752f1  
    205205            mtime_t i_seconds; 
    206206 
    207             i_seconds = var_GetTime( p_input, "length" ) / I64C(1000000 ); 
     207            i_seconds = var_GetTime( p_input, "length" ) / INT64_C( 1000000 ); 
    208208            secstotimestr( psz_total, i_seconds ); 
    209209 
    210             i_seconds = var_GetTime( p_input, "time" ) /   I64C(1000000 ); 
     210            i_seconds = var_GetTime( p_input, "time" ) / INT_64C( 1000000 ); 
    211211            secstotimestr( psz_time, i_seconds ); 
    212212