Ignore:
Timestamp:
Aug 25, 2015 8:45:46 AM (9 years ago)
Author:
nanang
Message:

Re #1881: Fixed compile warnings on VS2015 about declaration hides previous declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/test/codec_vectors.c

    r5058 r5170  
    160160    pos = 0; 
    161161    for (;;) { 
    162         pj_size_t count; 
     162        pj_size_t count2; 
    163163         
    164         count = fread(in_frame.buf, encoded_frame_len, 1, fref); 
    165         if (count != 1) 
     164        count2 = fread(in_frame.buf, encoded_frame_len, 1, fref); 
     165        if (count2 != 1) 
    166166            break; 
    167167 
    168         count = fread(out_frame.buf, encoded_frame_len, 1, output); 
    169         if (count != 1) 
     168        count2 = fread(out_frame.buf, encoded_frame_len, 1, output); 
     169        if (count2 != 1) 
    170170            break; 
    171171 
     
    381381        pjmedia_frame in_frame[2]; 
    382382        pj_timestamp ts; 
    383         unsigned count; 
     383        unsigned count2; 
    384384        pj_bool_t has_frame; 
    385385 
     
    402402 
    403403        if (has_frame) { 
    404             count = 2; 
     404            count2 = 2; 
    405405            if (pjmedia_codec_parse(codec, pkt, encoded_len, &ts,  
    406                                     &count, in_frame) != PJ_SUCCESS)  
     406                                    &count2, in_frame) != PJ_SUCCESS)  
    407407            { 
    408408                rc = -100; 
     
    410410            } 
    411411 
    412             if (count != 1) { 
     412            if (count2 != 1) { 
    413413                rc = -110; 
    414414                goto on_return; 
     
    460460    pos = 0; 
    461461    for (;;) { 
    462         pj_size_t count; 
     462        pj_size_t count2; 
    463463         
    464         count = fread(pkt, samples_per_frame*2, 1, fref); 
    465         if (count != 1) 
     464        count2 = fread(pkt, samples_per_frame*2, 1, fref); 
     465        if (count2 != 1) 
    466466            break; 
    467467 
    468         count = fread(out_frame.buf, samples_per_frame*2, 1, output); 
    469         if (count != 1) 
     468        count2 = fread(out_frame.buf, samples_per_frame*2, 1, output); 
     469        if (count2 != 1) 
    470470            break; 
    471471 
Note: See TracChangeset for help on using the changeset viewer.