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/g711.c

    r4266 r4537  
    524524        pj_uint8_t *dst = (pj_uint8_t*) output->buf; 
    525525 
    526         n = (input->size >> 1); 
     526        n = ((unsigned)input->size >> 1); 
    527527        for (i=0; i!=n; ++i, ++dst) { 
    528528            *dst = pjmedia_linear2alaw(samples[i]); 
     
    532532        pj_uint8_t *dst = (pj_uint8_t*) output->buf; 
    533533 
    534         n = (input->size >> 1); 
     534        n = ((unsigned)input->size >> 1); 
    535535        for (i=0; i!=n; ++i, ++dst) { 
    536536            *dst = pjmedia_linear2ulaw(samples[i]); 
Note: See TracChangeset for help on using the changeset viewer.