Changeset 4793 for pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Mar 14, 2014 4:09:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r4739 r4793 6072 6072 6073 6073 /** 6074 * Get additional info about the file player. This operation is not valid 6075 * for playlist. 6076 * 6077 * @param port The file player ID. 6078 * @param info The info. 6079 * 6080 * @return PJ_SUCCESS on success or the appropriate error code. 6081 */ 6082 PJ_DECL(pj_status_t) pjsua_player_get_info(pjsua_player_id id, 6083 pjmedia_wav_player_info *info); 6084 6085 6086 /** 6087 * Get playback position. This operation is not valid for playlist. 6088 * 6089 * @param id The file player ID. 6090 * 6091 * @return The current playback position, in samples. On error, 6092 * return the error code as negative value. 6093 */ 6094 PJ_DECL(pj_ssize_t) pjsua_player_get_pos(pjsua_player_id id); 6095 6096 /** 6074 6097 * Set playback position. This operation is not valid for playlist. 6075 6098 * … … 6082 6105 PJ_DECL(pj_status_t) pjsua_player_set_pos(pjsua_player_id id, 6083 6106 pj_uint32_t samples); 6084 6085 6107 6086 6108 /**
Note: See TracChangeset
for help on using the changeset viewer.