summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsua-lib/pjsua.h
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2011-10-26 09:01:53 +0000
committerLiong Sauw Ming <ming@teluu.com>2011-10-26 09:01:53 +0000
commit6187fb31a1f1e9b1f07f1b9b8022c97f3c02b25e (patch)
tree5fa3549dde179190131509ba4079d4bfbecb0200 /pjsip/include/pjsua-lib/pjsua.h
parent685cb1d88b3fa2e12547d11834f5b34335507f94 (diff)
Fixed #1401: Add support for video device's window flags
Now support flags PJMEDIA_VID_DEV_WND_BORDER and PJMEDIA_VID_DEV_WND_RESIZABLE. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3864 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsua-lib/pjsua.h')
-rw-r--r--pjsip/include/pjsua-lib/pjsua.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/pjsip/include/pjsua-lib/pjsua.h b/pjsip/include/pjsua-lib/pjsua.h
index 4a8292c0..b45f69f7 100644
--- a/pjsip/include/pjsua-lib/pjsua.h
+++ b/pjsip/include/pjsua-lib/pjsua.h
@@ -2746,6 +2746,14 @@ typedef struct pjsua_acc_config
pj_bool_t vid_out_auto_transmit;
/**
+ * Specify video window's flags. The value is a bitmask combination of
+ * #pjmedia_vid_dev_wnd_flag.
+ *
+ * Default: 0
+ */
+ unsigned vid_wnd_flags;
+
+ /**
* Specify the default capture device to be used by this account. If
* \a vid_out_auto_transmit is enabled, this device will be used for
* capturing video.
@@ -5738,6 +5746,14 @@ typedef struct pjsua_vid_preview_param
*/
pj_bool_t show;
+ /**
+ * Window flags. The value is a bitmask combination of
+ * #pjmedia_vid_dev_wnd_flag.
+ *
+ * Default: 0.
+ */
+ unsigned wnd_flags;
+
} pjsua_vid_preview_param;