Changeset 3442
- Timestamp:
- Mar 15, 2011 5:07:01 AM (14 years ago)
- Location:
- pjproject/trunk/pjmedia
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/stream.h
r3327 r3442 185 185 186 186 /** 187 * Get the last frame type retreived from the jitter buffer. 188 * 189 * @param stream The media stream. 190 * 191 * @return Jitter buffer frame type. 192 */ 193 PJ_DEF(char) pjmedia_stream_get_last_jb_frame_type(pjmedia_stream *stream); 194 195 196 /** 187 197 * Get the media port interface of the stream. The media port interface 188 198 * declares put_frame() and get_frame() function, which is the only -
pjproject/trunk/pjmedia/src/pjmedia/stream.c
r3416 r3442 2460 2460 2461 2461 2462 /* 2463 * Get the last frame frame type retreived from the jitter buffer. 2464 */ 2465 PJ_DEF(char) pjmedia_stream_get_last_jb_frame_type(pjmedia_stream *stream) 2466 { 2467 return stream->jb_last_frm; 2468 } 2469 2462 2470 2463 2471 /*
Note: See TracChangeset
for help on using the changeset viewer.