Changeset 4740
- Timestamp:
- Feb 12, 2014 4:54:12 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/media.hpp
r4704 r4740 340 340 */ 341 341 void createPlayer(const string &file_name, 342 unsigned options= PJMEDIA_FILE_NO_LOOP) throw(Error);342 unsigned options=0) throw(Error); 343 343 344 344 /** … … 355 355 void createPlaylist(const StringVector &file_names, 356 356 const string &label="", 357 unsigned options= PJMEDIA_FILE_NO_LOOP) throw(Error);357 unsigned options=0) throw(Error); 358 358 359 359 /** 360 360 * Set playback position. This operation is not valid for playlist. 361 * 362 * @param samples The desired playback position, in samples. 361 363 */ 362 364 void setPos(pj_uint32_t samples) throw(Error); … … 410 412 * @param max_size Maximum file size. Specify zero or -1 to remove size 411 413 * limitation. This value must be zero or -1 for now. 412 * @param options Optional options. 414 * @param options Optional options, which can be used to specify the 415 * recording file format. Supported options are 416 * PJMEDIA_FILE_WRITE_PCM, PJMEDIA_FILE_WRITE_ALAW, 417 * and PJMEDIA_FILE_WRITE_ULAW. Default is zero or 418 * PJMEDIA_FILE_WRITE_PCM. 413 419 */ 414 420 void createRecorder(const string &file_name, 415 421 unsigned enc_type=0, 416 422 pj_ssize_t max_size=0, 417 unsigned options= PJMEDIA_FILE_WRITE_PCM) throw(Error);423 unsigned options=0) throw(Error); 418 424 419 425 /**
Note: See TracChangeset
for help on using the changeset viewer.