Changeset 5969 for pjproject/trunk/pjsip/include/pjsua2/call.hpp
- Timestamp:
- Apr 15, 2019 10:52:16 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/call.hpp
r5923 r5969 312 312 * Default constructor initializes with empty or default values. 313 313 */ 314 CallSetting( pj_bool_tuseDefaultValues = false);314 CallSetting(bool useDefaultValues = false); 315 315 316 316 /** … … 1010 1010 * which are going to be used. 1011 1011 */ 1012 vector<SrtpCrypto>cryptos;1012 SrtpCryptoVector cryptos; 1013 1013 }; 1014 1014 … … 1236 1236 1237 1237 /** 1238 * Warning: deprecated, use getAudioMedia() instead. This function is not 1239 * safe in multithreaded environment. 1240 * 1238 1241 * Get media for the specified media index. 1239 1242 * … … 1243 1246 */ 1244 1247 Media *getMedia(unsigned med_idx) const; 1248 1249 /** 1250 * Get audio media for the specified media index. If the specified media 1251 * index is not audio or invalid or inactive, exception will be thrown. 1252 * 1253 * @param med_idx Media index. 1254 * 1255 * @return The audio media. 1256 */ 1257 AudioMedia getAudioMedia(unsigned med_idx) const throw(Error); 1245 1258 1246 1259 /**
Note: See TracChangeset
for help on using the changeset viewer.