- Timestamp:
- Mar 15, 2011 11:20:35 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjmedia/include/pjmedia/stream.h
r3420 r3446 89 89 * its own RTP/RTCP socket pair. 90 90 */ 91 struct pjmedia_stream_info91 typedef struct pjmedia_stream_info 92 92 { 93 93 pjmedia_type type; /**< Media type (audio, video) */ … … 135 135 is enabled? */ 136 136 #endif 137 }; 138 139 140 /** 141 * @see pjmedia_stream_info. 142 */ 143 typedef struct pjmedia_stream_info pjmedia_stream_info; 137 } pjmedia_stream_info; 144 138 145 139 … … 247 241 248 242 /** 243 * Get the stream info. 244 * 245 * @param stream The media stream. 246 * @param info Stream info. 247 * 248 * @return PJ_SUCCESS on success. 249 */ 250 PJ_DECL(pj_status_t) pjmedia_stream_get_info( const pjmedia_stream *stream, 251 pjmedia_stream_info *info); 252 253 /** 249 254 * Get the stream statistics. See also 250 255 * #pjmedia_stream_get_stat_jbuf()
Note: See TracChangeset
for help on using the changeset viewer.