- Timestamp:
- Mar 18, 2011 7:54:50 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjsip/include/pjsua-lib/pjsua.h
r3457 r3463 3053 3053 pj_str_t last_status_text; 3054 3054 3055 /** Call media status. */3055 /** Media status of the first audio stream. */ 3056 3056 pjsua_call_media_status media_status; 3057 3058 /** Number of active audio streams in this call */3059 unsigned audio_cnt;3060 3057 3061 3058 /** Media direction of the first audio stream. */ … … 3065 3062 pjsua_conf_port_id conf_slot; 3066 3063 3067 /** Array of audio media stream information */ 3064 /** Number of media streams in this call */ 3065 unsigned media_cnt; 3066 3067 /** Array of media stream information */ 3068 3068 struct 3069 3069 { … … 3071 3071 unsigned index; 3072 3072 3073 /** Media type. */ 3074 pjmedia_type type; 3075 3076 /** Media direction. */ 3077 pjmedia_dir dir; 3078 3073 3079 /** Call media status. */ 3074 pjsua_call_media_status media_status; 3075 3076 /** Media direction. */ 3077 pjmedia_dir media_dir; 3078 3079 /** The conference port number for the call. */ 3080 pjsua_conf_port_id conf_slot; 3081 3082 } audio[4]; 3080 pjsua_call_media_status status; 3081 3082 /** The specific media stream info. */ 3083 union { 3084 /** Audio stream */ 3085 struct { 3086 pjsua_conf_port_id conf_slot; /**< The conference port 3087 number for the call. */ 3088 } audio; 3089 3090 /** Video stream */ 3091 struct { 3092 pjmedia_vid_port *capturer; /**< Video capturer. */ 3093 pjmedia_vid_port *renderer; /**< Video renderer. */ 3094 } video; 3095 } stream; 3096 3097 } media[PJMEDIA_MAX_SDP_MEDIA]; 3083 3098 3084 3099 /** Up-to-date call connected duration (zero when call is not
Note: See TracChangeset
for help on using the changeset viewer.