Changeset 5626 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c
- Timestamp:
- Jul 18, 2017 12:43:43 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_common.c
r5461 r5626 291 291 const char *capname = pjmedia_vid_dev_cap_name(1 << i, NULL); 292 292 if (capname) { 293 int tmp_len = strlen(capname);293 int tmp_len = (int)strlen(capname); 294 294 if ((int)sizeof(capnames) - st_len <= tmp_len) 295 295 break; … … 309 309 pjmedia_get_video_format_info(NULL, vdi->fmt[i].id); 310 310 if (vfi) { 311 int tmp_len = strlen(vfi->name);311 int tmp_len = (int)strlen(vfi->name); 312 312 if ((int)sizeof(formats) - st_len <= tmp_len) { 313 313 st_len = -1;
Note: See TracChangeset
for help on using the changeset viewer.