Ignore:
Timestamp:
Jun 19, 2013 6:47:43 AM (11 years ago)
Author:
riza
Message:

Re #1680: Add initial support for Win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/wsola.c

    r3553 r4537  
    488488        } 
    489489        if (buf != end) 
    490             pjmedia_zero_samples(buf, end - buf); 
     490            pjmedia_zero_samples(buf, (unsigned)(end - buf)); 
    491491        wsola->fade_out_pos = 0; 
    492492    } else { 
     
    662662 
    663663        /* How many new samples do we have */ 
    664         dist = templ - start; 
     664        dist = (unsigned)(templ - start); 
    665665 
    666666        /* Not enough buffer to hold the result */ 
     
    720720 
    721721        start = find_pitch(buf, start, end, wsola->templ_size, 0); 
    722         dist = start - buf; 
     722        dist = (unsigned)(start - buf); 
    723723 
    724724        if (wsola->options & PJMEDIA_WSOLA_NO_HANNING) { 
Note: See TracChangeset for help on using the changeset viewer.