Opened 13 years ago
Closed 13 years ago
#1379 closed task (fixed)
API to check if video stream is running
Reported by: | bennylp | Owned by: | bennylp |
---|---|---|---|
Priority: | normal | Milestone: | release-2.0-alpha2 |
Component: | pjsua-lib | Version: | 2.0-dev-branch |
Keywords: | Cc: | ||
Backport to 1.x milestone: | Backported: |
Description
New API is added to allow application to quickly check if a particular video stream is currently running (i.e. has been created and started and not currently being paused):
PJ_DECL(pj_bool_t) pjsua_call_vid_stream_is_running(pjsua_call_id call_id, int med_idx, pjmedia_dir dir); PJ_DECL(pj_bool_t) pjmedia_vid_stream_is_running(pjmedia_vid_stream *stream, pjmedia_dir dir);
Change History (1)
comment:1 Changed 13 years ago by bennylp
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
(In [3786]) Added pjsua_call_vid_stream_is_running() and pjmedia_vid_stream_is_running() API (closes #1379)