Ignore:
Timestamp:
Apr 6, 2015 6:21:41 AM (9 years ago)
Author:
nanang
Message:

Misc (re #1782): Fixed various compile warnings on MacOS & iOS.

File:
1 edited

Legend:

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

    r4952 r5046  
    400400        } else if (pj_stricmp(&fmtp->param[i].name, &PACKETIZATION_MODE)==0) { 
    401401            tmp = pj_strtoul(&fmtp->param[i].val); 
    402             if (tmp >= 0 && tmp <= 2)  
     402            if (tmp <= 2)  
    403403                h264_fmtp->packetization_mode = (pj_uint8_t)tmp; 
    404404            else 
Note: See TracChangeset for help on using the changeset viewer.