- Timestamp:
- Mar 20, 2012 9:23:20 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/sdp_neg.c
r3911 r3980 1297 1297 media_used[j] == 0) 1298 1298 { 1299 pj_status_t status2; 1300 1299 1301 /* See if it has matching codec. */ 1300 status = match_offer(pool, prefer_remote_codec_order,1301 om, im, initial, &am);1302 if (status == PJ_SUCCESS) {1302 status2 = match_offer(pool, prefer_remote_codec_order, 1303 om, im, initial, &am); 1304 if (status2 == PJ_SUCCESS) { 1303 1305 /* Mark media as used. */ 1304 1306 media_used[j] = 1; 1305 1307 break; 1306 } 1308 } else { 1309 status = status2; 1310 } 1307 1311 } 1308 1312 }
Note: See TracChangeset
for help on using the changeset viewer.