summaryrefslogtreecommitdiffstats
path: root/bindings/python/tinyWRAP.py
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/python/tinyWRAP.py')
-rw-r--r--bindings/python/tinyWRAP.py2148
1 files changed, 2148 insertions, 0 deletions
diff --git a/bindings/python/tinyWRAP.py b/bindings/python/tinyWRAP.py
new file mode 100644
index 0000000..f08ac2e
--- /dev/null
+++ b/bindings/python/tinyWRAP.py
@@ -0,0 +1,2148 @@
+# This file was automatically generated by SWIG (http://www.swig.org).
+# Version 2.0.9
+#
+# Do not make changes to this file unless you know what you are doing--modify
+# the SWIG interface file instead.
+
+
+
+from sys import version_info
+if version_info >= (2,6,0):
+ def swig_import_helper():
+ from os.path import dirname
+ import imp
+ fp = None
+ try:
+ fp, pathname, description = imp.find_module('_tinyWRAP', [dirname(__file__)])
+ except ImportError:
+ import _tinyWRAP
+ return _tinyWRAP
+ if fp is not None:
+ try:
+ _mod = imp.load_module('_tinyWRAP', fp, pathname, description)
+ finally:
+ fp.close()
+ return _mod
+ _tinyWRAP = swig_import_helper()
+ del swig_import_helper
+else:
+ import _tinyWRAP
+del version_info
+try:
+ _swig_property = property
+except NameError:
+ pass # Python < 2.2 doesn't have 'property'.
+def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
+ if (name == "thisown"): return self.this.own(value)
+ if (name == "this"):
+ if type(value).__name__ == 'SwigPyObject':
+ self.__dict__[name] = value
+ return
+ method = class_type.__swig_setmethods__.get(name,None)
+ if method: return method(self,value)
+ if (not static):
+ self.__dict__[name] = value
+ else:
+ raise AttributeError("You cannot add attributes to %s" % self)
+
+def _swig_setattr(self,class_type,name,value):
+ return _swig_setattr_nondynamic(self,class_type,name,value,0)
+
+def _swig_getattr(self,class_type,name):
+ if (name == "thisown"): return self.this.own()
+ method = class_type.__swig_getmethods__.get(name,None)
+ if method: return method(self)
+ raise AttributeError(name)
+
+def _swig_repr(self):
+ try: strthis = "proxy of " + self.this.__repr__()
+ except: strthis = ""
+ return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
+
+try:
+ _object = object
+ _newclass = 1
+except AttributeError:
+ class _object : pass
+ _newclass = 0
+
+
+try:
+ import weakref
+ weakref_proxy = weakref.proxy
+except:
+ weakref_proxy = lambda x: x
+
+
+class DDebugCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, DDebugCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, DDebugCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == DDebugCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_DDebugCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_DDebugCallback
+ __del__ = lambda self : None;
+ def OnDebugInfo(self, *args): return _tinyWRAP.DDebugCallback_OnDebugInfo(self, *args)
+ def OnDebugWarn(self, *args): return _tinyWRAP.DDebugCallback_OnDebugWarn(self, *args)
+ def OnDebugError(self, *args): return _tinyWRAP.DDebugCallback_OnDebugError(self, *args)
+ def OnDebugFatal(self, *args): return _tinyWRAP.DDebugCallback_OnDebugFatal(self, *args)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_DDebugCallback(self)
+ return weakref_proxy(self)
+DDebugCallback_swigregister = _tinyWRAP.DDebugCallback_swigregister
+DDebugCallback_swigregister(DDebugCallback)
+
+class AudioResampler(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, AudioResampler, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, AudioResampler, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_AudioResampler(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_AudioResampler
+ __del__ = lambda self : None;
+ def isValid(self): return _tinyWRAP.AudioResampler_isValid(self)
+ def getOutputRequiredSizeInShort(self): return _tinyWRAP.AudioResampler_getOutputRequiredSizeInShort(self)
+ def getInputRequiredSizeInShort(self): return _tinyWRAP.AudioResampler_getInputRequiredSizeInShort(self)
+ def process(self, *args): return _tinyWRAP.AudioResampler_process(self, *args)
+AudioResampler_swigregister = _tinyWRAP.AudioResampler_swigregister
+AudioResampler_swigregister(AudioResampler)
+
+twrap_media_none = _tinyWRAP.twrap_media_none
+twrap_media_audio = _tinyWRAP.twrap_media_audio
+twrap_media_video = _tinyWRAP.twrap_media_video
+twrap_media_msrp = _tinyWRAP.twrap_media_msrp
+twrap_media_t140 = _tinyWRAP.twrap_media_t140
+twrap_media_bfcp = _tinyWRAP.twrap_media_bfcp
+twrap_media_bfcp_audio = _tinyWRAP.twrap_media_bfcp_audio
+twrap_media_bfcp_video = _tinyWRAP.twrap_media_bfcp_video
+twrap_media_audiovideo = _tinyWRAP.twrap_media_audiovideo
+twrap_media_audio_video = _tinyWRAP.twrap_media_audio_video
+class ActionConfig(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ActionConfig, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ActionConfig, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_ActionConfig()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_ActionConfig
+ __del__ = lambda self : None;
+ def addHeader(self, *args): return _tinyWRAP.ActionConfig_addHeader(self, *args)
+ def addPayload(self, *args): return _tinyWRAP.ActionConfig_addPayload(self, *args)
+ def setActiveMedia(self, *args): return _tinyWRAP.ActionConfig_setActiveMedia(self, *args)
+ def setResponseLine(self, *args): return _tinyWRAP.ActionConfig_setResponseLine(self, *args)
+ def setMediaString(self, *args): return _tinyWRAP.ActionConfig_setMediaString(self, *args)
+ def setMediaInt(self, *args): return _tinyWRAP.ActionConfig_setMediaInt(self, *args)
+ActionConfig_swigregister = _tinyWRAP.ActionConfig_swigregister
+ActionConfig_swigregister(ActionConfig)
+
+class Codec(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Codec, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Codec, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_Codec
+ __del__ = lambda self : None;
+ def getMediaType(self): return _tinyWRAP.Codec_getMediaType(self)
+ def getName(self): return _tinyWRAP.Codec_getName(self)
+ def getDescription(self): return _tinyWRAP.Codec_getDescription(self)
+ def getNegFormat(self): return _tinyWRAP.Codec_getNegFormat(self)
+ def getAudioSamplingRate(self): return _tinyWRAP.Codec_getAudioSamplingRate(self)
+ def getAudioChannels(self): return _tinyWRAP.Codec_getAudioChannels(self)
+ def getAudioPTime(self): return _tinyWRAP.Codec_getAudioPTime(self)
+Codec_swigregister = _tinyWRAP.Codec_swigregister
+Codec_swigregister(Codec)
+
+class MediaSessionMgr(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MediaSessionMgr, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, MediaSessionMgr, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_MediaSessionMgr
+ __del__ = lambda self : None;
+ def sessionSetInt32(self, *args): return _tinyWRAP.MediaSessionMgr_sessionSetInt32(self, *args)
+ def sessionGetInt32(self, *args): return _tinyWRAP.MediaSessionMgr_sessionGetInt32(self, *args)
+ def consumerSetInt32(self, *args): return _tinyWRAP.MediaSessionMgr_consumerSetInt32(self, *args)
+ def consumerSetInt64(self, *args): return _tinyWRAP.MediaSessionMgr_consumerSetInt64(self, *args)
+ def producerSetInt32(self, *args): return _tinyWRAP.MediaSessionMgr_producerSetInt32(self, *args)
+ def producerSetInt64(self, *args): return _tinyWRAP.MediaSessionMgr_producerSetInt64(self, *args)
+ def producerGetCodec(self, *args): return _tinyWRAP.MediaSessionMgr_producerGetCodec(self, *args)
+ def findProxyPluginConsumer(self, *args): return _tinyWRAP.MediaSessionMgr_findProxyPluginConsumer(self, *args)
+ def findProxyPluginProducer(self, *args): return _tinyWRAP.MediaSessionMgr_findProxyPluginProducer(self, *args)
+ __swig_getmethods__["registerAudioPluginFromFile"] = lambda x: _tinyWRAP.MediaSessionMgr_registerAudioPluginFromFile
+ if _newclass:registerAudioPluginFromFile = staticmethod(_tinyWRAP.MediaSessionMgr_registerAudioPluginFromFile)
+ def getSessionId(self, *args): return _tinyWRAP.MediaSessionMgr_getSessionId(self, *args)
+ __swig_getmethods__["defaultsSetProfile"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetProfile
+ if _newclass:defaultsSetProfile = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetProfile)
+ __swig_getmethods__["defaultsGetProfile"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetProfile
+ if _newclass:defaultsGetProfile = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetProfile)
+ __swig_getmethods__["defaultsSetBandwidthLevel"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthLevel
+ if _newclass:defaultsSetBandwidthLevel = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetBandwidthLevel)
+ __swig_getmethods__["defaultsGetBandwidthLevel"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetBandwidthLevel
+ if _newclass:defaultsGetBandwidthLevel = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetBandwidthLevel)
+ __swig_getmethods__["defaultsSetCongestionCtrlEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetCongestionCtrlEnabled
+ if _newclass:defaultsSetCongestionCtrlEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetCongestionCtrlEnabled)
+ __swig_getmethods__["defaultsSetVideoMotionRank"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetVideoMotionRank
+ if _newclass:defaultsSetVideoMotionRank = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetVideoMotionRank)
+ __swig_getmethods__["defaultsSetVideoFps"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetVideoFps
+ if _newclass:defaultsSetVideoFps = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetVideoFps)
+ __swig_getmethods__["defaultsSetBandwidthVideoUploadMax"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoUploadMax
+ if _newclass:defaultsSetBandwidthVideoUploadMax = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoUploadMax)
+ __swig_getmethods__["defaultsSetBandwidthVideoDownloadMax"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoDownloadMax
+ if _newclass:defaultsSetBandwidthVideoDownloadMax = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoDownloadMax)
+ __swig_getmethods__["defaultsSetPrefVideoSize"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetPrefVideoSize
+ if _newclass:defaultsSetPrefVideoSize = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetPrefVideoSize)
+ __swig_getmethods__["defaultsSetJbMargin"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetJbMargin
+ if _newclass:defaultsSetJbMargin = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetJbMargin)
+ __swig_getmethods__["defaultsSetJbMaxLateRate"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetJbMaxLateRate
+ if _newclass:defaultsSetJbMaxLateRate = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetJbMaxLateRate)
+ __swig_getmethods__["defaultsSetEchoTail"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetEchoTail
+ if _newclass:defaultsSetEchoTail = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetEchoTail)
+ __swig_getmethods__["defaultsGetEchoTail"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetEchoTail
+ if _newclass:defaultsGetEchoTail = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetEchoTail)
+ __swig_getmethods__["defaultsSetEchoSkew"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetEchoSkew
+ if _newclass:defaultsSetEchoSkew = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetEchoSkew)
+ __swig_getmethods__["defaultsSetEchoSuppEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetEchoSuppEnabled
+ if _newclass:defaultsSetEchoSuppEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetEchoSuppEnabled)
+ __swig_getmethods__["defaultsGetEchoSuppEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetEchoSuppEnabled
+ if _newclass:defaultsGetEchoSuppEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetEchoSuppEnabled)
+ __swig_getmethods__["defaultsSetAgcEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAgcEnabled
+ if _newclass:defaultsSetAgcEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAgcEnabled)
+ __swig_getmethods__["defaultsGetAgcEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetAgcEnabled
+ if _newclass:defaultsGetAgcEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetAgcEnabled)
+ __swig_getmethods__["defaultsSetAgcLevel"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAgcLevel
+ if _newclass:defaultsSetAgcLevel = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAgcLevel)
+ __swig_getmethods__["defaultsGetAgcLevel"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetAgcLevel
+ if _newclass:defaultsGetAgcLevel = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetAgcLevel)
+ __swig_getmethods__["defaultsSetVadEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetVadEnabled
+ if _newclass:defaultsSetVadEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetVadEnabled)
+ __swig_getmethods__["defaultsGetGetVadEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetGetVadEnabled
+ if _newclass:defaultsGetGetVadEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetGetVadEnabled)
+ __swig_getmethods__["defaultsSetNoiseSuppEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppEnabled
+ if _newclass:defaultsSetNoiseSuppEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppEnabled)
+ __swig_getmethods__["defaultsGetNoiseSuppEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppEnabled
+ if _newclass:defaultsGetNoiseSuppEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppEnabled)
+ __swig_getmethods__["defaultsSetNoiseSuppLevel"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppLevel
+ if _newclass:defaultsSetNoiseSuppLevel = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppLevel)
+ __swig_getmethods__["defaultsGetNoiseSuppLevel"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppLevel
+ if _newclass:defaultsGetNoiseSuppLevel = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppLevel)
+ __swig_getmethods__["defaultsSet100relEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSet100relEnabled
+ if _newclass:defaultsSet100relEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSet100relEnabled)
+ __swig_getmethods__["defaultsGet100relEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGet100relEnabled
+ if _newclass:defaultsGet100relEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGet100relEnabled)
+ __swig_getmethods__["defaultsSetScreenSize"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetScreenSize
+ if _newclass:defaultsSetScreenSize = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetScreenSize)
+ __swig_getmethods__["defaultsSetAudioGain"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAudioGain
+ if _newclass:defaultsSetAudioGain = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAudioGain)
+ __swig_getmethods__["defaultsSetAudioPtime"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAudioPtime
+ if _newclass:defaultsSetAudioPtime = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAudioPtime)
+ __swig_getmethods__["defaultsSetAudioChannels"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAudioChannels
+ if _newclass:defaultsSetAudioChannels = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAudioChannels)
+ __swig_getmethods__["defaultsSetRtpPortRange"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetRtpPortRange
+ if _newclass:defaultsSetRtpPortRange = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetRtpPortRange)
+ __swig_getmethods__["defaultsSetRtpSymetricEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetRtpSymetricEnabled
+ if _newclass:defaultsSetRtpSymetricEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetRtpSymetricEnabled)
+ __swig_getmethods__["defaultsSetMediaType"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetMediaType
+ if _newclass:defaultsSetMediaType = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetMediaType)
+ __swig_getmethods__["defaultsSetVolume"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetVolume
+ if _newclass:defaultsSetVolume = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetVolume)
+ __swig_getmethods__["defaultsGetVolume"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetVolume
+ if _newclass:defaultsGetVolume = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetVolume)
+ __swig_getmethods__["defaultsSetInviteSessionTimers"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetInviteSessionTimers
+ if _newclass:defaultsSetInviteSessionTimers = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetInviteSessionTimers)
+ __swig_getmethods__["defaultsSetSRtpMode"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetSRtpMode
+ if _newclass:defaultsSetSRtpMode = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetSRtpMode)
+ __swig_getmethods__["defaultsGetSRtpMode"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetSRtpMode
+ if _newclass:defaultsGetSRtpMode = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetSRtpMode)
+ __swig_getmethods__["defaultsSetSRtpType"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetSRtpType
+ if _newclass:defaultsSetSRtpType = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetSRtpType)
+ __swig_getmethods__["defaultsGetSRtpType"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetSRtpType
+ if _newclass:defaultsGetSRtpType = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetSRtpType)
+ __swig_getmethods__["defaultsSetRtcpEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetRtcpEnabled
+ if _newclass:defaultsSetRtcpEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetRtcpEnabled)
+ __swig_getmethods__["defaultsGetRtcpEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetRtcpEnabled
+ if _newclass:defaultsGetRtcpEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetRtcpEnabled)
+ __swig_getmethods__["defaultsSetRtcpMuxEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetRtcpMuxEnabled
+ if _newclass:defaultsSetRtcpMuxEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetRtcpMuxEnabled)
+ __swig_getmethods__["defaultsGetRtcpMuxEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetRtcpMuxEnabled
+ if _newclass:defaultsGetRtcpMuxEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetRtcpMuxEnabled)
+ __swig_getmethods__["defaultsSetStunEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetStunEnabled
+ if _newclass:defaultsSetStunEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetStunEnabled)
+ __swig_getmethods__["defaultsSetIceStunEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetIceStunEnabled
+ if _newclass:defaultsSetIceStunEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetIceStunEnabled)
+ __swig_getmethods__["defaultsSetIceTurnEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetIceTurnEnabled
+ if _newclass:defaultsSetIceTurnEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetIceTurnEnabled)
+ __swig_getmethods__["defaultsSetStunServer"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetStunServer
+ if _newclass:defaultsSetStunServer = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetStunServer)
+ __swig_getmethods__["defaultsSetStunCred"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetStunCred
+ if _newclass:defaultsSetStunCred = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetStunCred)
+ __swig_getmethods__["defaultsSetIceEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetIceEnabled
+ if _newclass:defaultsSetIceEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetIceEnabled)
+ __swig_getmethods__["defaultsSetByPassEncoding"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetByPassEncoding
+ if _newclass:defaultsSetByPassEncoding = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetByPassEncoding)
+ __swig_getmethods__["defaultsGetByPassEncoding"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetByPassEncoding
+ if _newclass:defaultsGetByPassEncoding = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetByPassEncoding)
+ __swig_getmethods__["defaultsSetByPassDecoding"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetByPassDecoding
+ if _newclass:defaultsSetByPassDecoding = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetByPassDecoding)
+ __swig_getmethods__["defaultsGetByPassDecoding"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetByPassDecoding
+ if _newclass:defaultsGetByPassDecoding = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetByPassDecoding)
+ __swig_getmethods__["defaultsSetVideoJbEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetVideoJbEnabled
+ if _newclass:defaultsSetVideoJbEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetVideoJbEnabled)
+ __swig_getmethods__["defaultsGetVideoJbEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetVideoJbEnabled
+ if _newclass:defaultsGetVideoJbEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetVideoJbEnabled)
+ __swig_getmethods__["defaultsSetVideoZeroArtifactsEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetVideoZeroArtifactsEnabled
+ if _newclass:defaultsSetVideoZeroArtifactsEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetVideoZeroArtifactsEnabled)
+ __swig_getmethods__["defaultsGetVideoZeroArtifactsEnabled"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetVideoZeroArtifactsEnabled
+ if _newclass:defaultsGetVideoZeroArtifactsEnabled = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetVideoZeroArtifactsEnabled)
+ __swig_getmethods__["defaultsSetRtpBuffSize"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetRtpBuffSize
+ if _newclass:defaultsSetRtpBuffSize = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetRtpBuffSize)
+ __swig_getmethods__["defaultsGetRtpBuffSize"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsGetRtpBuffSize
+ if _newclass:defaultsGetRtpBuffSize = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsGetRtpBuffSize)
+ __swig_getmethods__["defaultsSetAvpfTail"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAvpfTail
+ if _newclass:defaultsSetAvpfTail = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAvpfTail)
+ __swig_getmethods__["defaultsSetAvpfMode"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetAvpfMode
+ if _newclass:defaultsSetAvpfMode = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetAvpfMode)
+ __swig_getmethods__["defaultsSetOpusMaxCaptureRate"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxCaptureRate
+ if _newclass:defaultsSetOpusMaxCaptureRate = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxCaptureRate)
+ __swig_getmethods__["defaultsSetOpusMaxPlaybackRate"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxPlaybackRate
+ if _newclass:defaultsSetOpusMaxPlaybackRate = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxPlaybackRate)
+ __swig_getmethods__["defaultsSetMaxFds"] = lambda x: _tinyWRAP.MediaSessionMgr_defaultsSetMaxFds
+ if _newclass:defaultsSetMaxFds = staticmethod(_tinyWRAP.MediaSessionMgr_defaultsSetMaxFds)
+MediaSessionMgr_swigregister = _tinyWRAP.MediaSessionMgr_swigregister
+MediaSessionMgr_swigregister(MediaSessionMgr)
+
+def MediaSessionMgr_registerAudioPluginFromFile(*args):
+ return _tinyWRAP.MediaSessionMgr_registerAudioPluginFromFile(*args)
+MediaSessionMgr_registerAudioPluginFromFile = _tinyWRAP.MediaSessionMgr_registerAudioPluginFromFile
+
+def MediaSessionMgr_defaultsSetProfile(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetProfile(*args)
+MediaSessionMgr_defaultsSetProfile = _tinyWRAP.MediaSessionMgr_defaultsSetProfile
+
+def MediaSessionMgr_defaultsGetProfile():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetProfile()
+MediaSessionMgr_defaultsGetProfile = _tinyWRAP.MediaSessionMgr_defaultsGetProfile
+
+def MediaSessionMgr_defaultsSetBandwidthLevel(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthLevel(*args)
+MediaSessionMgr_defaultsSetBandwidthLevel = _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthLevel
+
+def MediaSessionMgr_defaultsGetBandwidthLevel():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetBandwidthLevel()
+MediaSessionMgr_defaultsGetBandwidthLevel = _tinyWRAP.MediaSessionMgr_defaultsGetBandwidthLevel
+
+def MediaSessionMgr_defaultsSetCongestionCtrlEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetCongestionCtrlEnabled(*args)
+MediaSessionMgr_defaultsSetCongestionCtrlEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetCongestionCtrlEnabled
+
+def MediaSessionMgr_defaultsSetVideoMotionRank(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetVideoMotionRank(*args)
+MediaSessionMgr_defaultsSetVideoMotionRank = _tinyWRAP.MediaSessionMgr_defaultsSetVideoMotionRank
+
+def MediaSessionMgr_defaultsSetVideoFps(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetVideoFps(*args)
+MediaSessionMgr_defaultsSetVideoFps = _tinyWRAP.MediaSessionMgr_defaultsSetVideoFps
+
+def MediaSessionMgr_defaultsSetBandwidthVideoUploadMax(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoUploadMax(*args)
+MediaSessionMgr_defaultsSetBandwidthVideoUploadMax = _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoUploadMax
+
+def MediaSessionMgr_defaultsSetBandwidthVideoDownloadMax(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoDownloadMax(*args)
+MediaSessionMgr_defaultsSetBandwidthVideoDownloadMax = _tinyWRAP.MediaSessionMgr_defaultsSetBandwidthVideoDownloadMax
+
+def MediaSessionMgr_defaultsSetPrefVideoSize(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetPrefVideoSize(*args)
+MediaSessionMgr_defaultsSetPrefVideoSize = _tinyWRAP.MediaSessionMgr_defaultsSetPrefVideoSize
+
+def MediaSessionMgr_defaultsSetJbMargin(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetJbMargin(*args)
+MediaSessionMgr_defaultsSetJbMargin = _tinyWRAP.MediaSessionMgr_defaultsSetJbMargin
+
+def MediaSessionMgr_defaultsSetJbMaxLateRate(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetJbMaxLateRate(*args)
+MediaSessionMgr_defaultsSetJbMaxLateRate = _tinyWRAP.MediaSessionMgr_defaultsSetJbMaxLateRate
+
+def MediaSessionMgr_defaultsSetEchoTail(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetEchoTail(*args)
+MediaSessionMgr_defaultsSetEchoTail = _tinyWRAP.MediaSessionMgr_defaultsSetEchoTail
+
+def MediaSessionMgr_defaultsGetEchoTail():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetEchoTail()
+MediaSessionMgr_defaultsGetEchoTail = _tinyWRAP.MediaSessionMgr_defaultsGetEchoTail
+
+def MediaSessionMgr_defaultsSetEchoSkew(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetEchoSkew(*args)
+MediaSessionMgr_defaultsSetEchoSkew = _tinyWRAP.MediaSessionMgr_defaultsSetEchoSkew
+
+def MediaSessionMgr_defaultsSetEchoSuppEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetEchoSuppEnabled(*args)
+MediaSessionMgr_defaultsSetEchoSuppEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetEchoSuppEnabled
+
+def MediaSessionMgr_defaultsGetEchoSuppEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetEchoSuppEnabled()
+MediaSessionMgr_defaultsGetEchoSuppEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetEchoSuppEnabled
+
+def MediaSessionMgr_defaultsSetAgcEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAgcEnabled(*args)
+MediaSessionMgr_defaultsSetAgcEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetAgcEnabled
+
+def MediaSessionMgr_defaultsGetAgcEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetAgcEnabled()
+MediaSessionMgr_defaultsGetAgcEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetAgcEnabled
+
+def MediaSessionMgr_defaultsSetAgcLevel(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAgcLevel(*args)
+MediaSessionMgr_defaultsSetAgcLevel = _tinyWRAP.MediaSessionMgr_defaultsSetAgcLevel
+
+def MediaSessionMgr_defaultsGetAgcLevel():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetAgcLevel()
+MediaSessionMgr_defaultsGetAgcLevel = _tinyWRAP.MediaSessionMgr_defaultsGetAgcLevel
+
+def MediaSessionMgr_defaultsSetVadEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetVadEnabled(*args)
+MediaSessionMgr_defaultsSetVadEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetVadEnabled
+
+def MediaSessionMgr_defaultsGetGetVadEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetGetVadEnabled()
+MediaSessionMgr_defaultsGetGetVadEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetGetVadEnabled
+
+def MediaSessionMgr_defaultsSetNoiseSuppEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppEnabled(*args)
+MediaSessionMgr_defaultsSetNoiseSuppEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppEnabled
+
+def MediaSessionMgr_defaultsGetNoiseSuppEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppEnabled()
+MediaSessionMgr_defaultsGetNoiseSuppEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppEnabled
+
+def MediaSessionMgr_defaultsSetNoiseSuppLevel(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppLevel(*args)
+MediaSessionMgr_defaultsSetNoiseSuppLevel = _tinyWRAP.MediaSessionMgr_defaultsSetNoiseSuppLevel
+
+def MediaSessionMgr_defaultsGetNoiseSuppLevel():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppLevel()
+MediaSessionMgr_defaultsGetNoiseSuppLevel = _tinyWRAP.MediaSessionMgr_defaultsGetNoiseSuppLevel
+
+def MediaSessionMgr_defaultsSet100relEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSet100relEnabled(*args)
+MediaSessionMgr_defaultsSet100relEnabled = _tinyWRAP.MediaSessionMgr_defaultsSet100relEnabled
+
+def MediaSessionMgr_defaultsGet100relEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGet100relEnabled()
+MediaSessionMgr_defaultsGet100relEnabled = _tinyWRAP.MediaSessionMgr_defaultsGet100relEnabled
+
+def MediaSessionMgr_defaultsSetScreenSize(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetScreenSize(*args)
+MediaSessionMgr_defaultsSetScreenSize = _tinyWRAP.MediaSessionMgr_defaultsSetScreenSize
+
+def MediaSessionMgr_defaultsSetAudioGain(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAudioGain(*args)
+MediaSessionMgr_defaultsSetAudioGain = _tinyWRAP.MediaSessionMgr_defaultsSetAudioGain
+
+def MediaSessionMgr_defaultsSetAudioPtime(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAudioPtime(*args)
+MediaSessionMgr_defaultsSetAudioPtime = _tinyWRAP.MediaSessionMgr_defaultsSetAudioPtime
+
+def MediaSessionMgr_defaultsSetAudioChannels(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAudioChannels(*args)
+MediaSessionMgr_defaultsSetAudioChannels = _tinyWRAP.MediaSessionMgr_defaultsSetAudioChannels
+
+def MediaSessionMgr_defaultsSetRtpPortRange(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetRtpPortRange(*args)
+MediaSessionMgr_defaultsSetRtpPortRange = _tinyWRAP.MediaSessionMgr_defaultsSetRtpPortRange
+
+def MediaSessionMgr_defaultsSetRtpSymetricEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetRtpSymetricEnabled(*args)
+MediaSessionMgr_defaultsSetRtpSymetricEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetRtpSymetricEnabled
+
+def MediaSessionMgr_defaultsSetMediaType(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetMediaType(*args)
+MediaSessionMgr_defaultsSetMediaType = _tinyWRAP.MediaSessionMgr_defaultsSetMediaType
+
+def MediaSessionMgr_defaultsSetVolume(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetVolume(*args)
+MediaSessionMgr_defaultsSetVolume = _tinyWRAP.MediaSessionMgr_defaultsSetVolume
+
+def MediaSessionMgr_defaultsGetVolume():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetVolume()
+MediaSessionMgr_defaultsGetVolume = _tinyWRAP.MediaSessionMgr_defaultsGetVolume
+
+def MediaSessionMgr_defaultsSetInviteSessionTimers(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetInviteSessionTimers(*args)
+MediaSessionMgr_defaultsSetInviteSessionTimers = _tinyWRAP.MediaSessionMgr_defaultsSetInviteSessionTimers
+
+def MediaSessionMgr_defaultsSetSRtpMode(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetSRtpMode(*args)
+MediaSessionMgr_defaultsSetSRtpMode = _tinyWRAP.MediaSessionMgr_defaultsSetSRtpMode
+
+def MediaSessionMgr_defaultsGetSRtpMode():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetSRtpMode()
+MediaSessionMgr_defaultsGetSRtpMode = _tinyWRAP.MediaSessionMgr_defaultsGetSRtpMode
+
+def MediaSessionMgr_defaultsSetSRtpType(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetSRtpType(*args)
+MediaSessionMgr_defaultsSetSRtpType = _tinyWRAP.MediaSessionMgr_defaultsSetSRtpType
+
+def MediaSessionMgr_defaultsGetSRtpType():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetSRtpType()
+MediaSessionMgr_defaultsGetSRtpType = _tinyWRAP.MediaSessionMgr_defaultsGetSRtpType
+
+def MediaSessionMgr_defaultsSetRtcpEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetRtcpEnabled(*args)
+MediaSessionMgr_defaultsSetRtcpEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetRtcpEnabled
+
+def MediaSessionMgr_defaultsGetRtcpEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetRtcpEnabled()
+MediaSessionMgr_defaultsGetRtcpEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetRtcpEnabled
+
+def MediaSessionMgr_defaultsSetRtcpMuxEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetRtcpMuxEnabled(*args)
+MediaSessionMgr_defaultsSetRtcpMuxEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetRtcpMuxEnabled
+
+def MediaSessionMgr_defaultsGetRtcpMuxEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetRtcpMuxEnabled()
+MediaSessionMgr_defaultsGetRtcpMuxEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetRtcpMuxEnabled
+
+def MediaSessionMgr_defaultsSetStunEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetStunEnabled(*args)
+MediaSessionMgr_defaultsSetStunEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetStunEnabled
+
+def MediaSessionMgr_defaultsSetIceStunEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetIceStunEnabled(*args)
+MediaSessionMgr_defaultsSetIceStunEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetIceStunEnabled
+
+def MediaSessionMgr_defaultsSetIceTurnEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetIceTurnEnabled(*args)
+MediaSessionMgr_defaultsSetIceTurnEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetIceTurnEnabled
+
+def MediaSessionMgr_defaultsSetStunServer(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetStunServer(*args)
+MediaSessionMgr_defaultsSetStunServer = _tinyWRAP.MediaSessionMgr_defaultsSetStunServer
+
+def MediaSessionMgr_defaultsSetStunCred(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetStunCred(*args)
+MediaSessionMgr_defaultsSetStunCred = _tinyWRAP.MediaSessionMgr_defaultsSetStunCred
+
+def MediaSessionMgr_defaultsSetIceEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetIceEnabled(*args)
+MediaSessionMgr_defaultsSetIceEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetIceEnabled
+
+def MediaSessionMgr_defaultsSetByPassEncoding(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetByPassEncoding(*args)
+MediaSessionMgr_defaultsSetByPassEncoding = _tinyWRAP.MediaSessionMgr_defaultsSetByPassEncoding
+
+def MediaSessionMgr_defaultsGetByPassEncoding():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetByPassEncoding()
+MediaSessionMgr_defaultsGetByPassEncoding = _tinyWRAP.MediaSessionMgr_defaultsGetByPassEncoding
+
+def MediaSessionMgr_defaultsSetByPassDecoding(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetByPassDecoding(*args)
+MediaSessionMgr_defaultsSetByPassDecoding = _tinyWRAP.MediaSessionMgr_defaultsSetByPassDecoding
+
+def MediaSessionMgr_defaultsGetByPassDecoding():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetByPassDecoding()
+MediaSessionMgr_defaultsGetByPassDecoding = _tinyWRAP.MediaSessionMgr_defaultsGetByPassDecoding
+
+def MediaSessionMgr_defaultsSetVideoJbEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetVideoJbEnabled(*args)
+MediaSessionMgr_defaultsSetVideoJbEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetVideoJbEnabled
+
+def MediaSessionMgr_defaultsGetVideoJbEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetVideoJbEnabled()
+MediaSessionMgr_defaultsGetVideoJbEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetVideoJbEnabled
+
+def MediaSessionMgr_defaultsSetVideoZeroArtifactsEnabled(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetVideoZeroArtifactsEnabled(*args)
+MediaSessionMgr_defaultsSetVideoZeroArtifactsEnabled = _tinyWRAP.MediaSessionMgr_defaultsSetVideoZeroArtifactsEnabled
+
+def MediaSessionMgr_defaultsGetVideoZeroArtifactsEnabled():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetVideoZeroArtifactsEnabled()
+MediaSessionMgr_defaultsGetVideoZeroArtifactsEnabled = _tinyWRAP.MediaSessionMgr_defaultsGetVideoZeroArtifactsEnabled
+
+def MediaSessionMgr_defaultsSetRtpBuffSize(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetRtpBuffSize(*args)
+MediaSessionMgr_defaultsSetRtpBuffSize = _tinyWRAP.MediaSessionMgr_defaultsSetRtpBuffSize
+
+def MediaSessionMgr_defaultsGetRtpBuffSize():
+ return _tinyWRAP.MediaSessionMgr_defaultsGetRtpBuffSize()
+MediaSessionMgr_defaultsGetRtpBuffSize = _tinyWRAP.MediaSessionMgr_defaultsGetRtpBuffSize
+
+def MediaSessionMgr_defaultsSetAvpfTail(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAvpfTail(*args)
+MediaSessionMgr_defaultsSetAvpfTail = _tinyWRAP.MediaSessionMgr_defaultsSetAvpfTail
+
+def MediaSessionMgr_defaultsSetAvpfMode(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetAvpfMode(*args)
+MediaSessionMgr_defaultsSetAvpfMode = _tinyWRAP.MediaSessionMgr_defaultsSetAvpfMode
+
+def MediaSessionMgr_defaultsSetOpusMaxCaptureRate(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxCaptureRate(*args)
+MediaSessionMgr_defaultsSetOpusMaxCaptureRate = _tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxCaptureRate
+
+def MediaSessionMgr_defaultsSetOpusMaxPlaybackRate(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxPlaybackRate(*args)
+MediaSessionMgr_defaultsSetOpusMaxPlaybackRate = _tinyWRAP.MediaSessionMgr_defaultsSetOpusMaxPlaybackRate
+
+def MediaSessionMgr_defaultsSetMaxFds(*args):
+ return _tinyWRAP.MediaSessionMgr_defaultsSetMaxFds(*args)
+MediaSessionMgr_defaultsSetMaxFds = _tinyWRAP.MediaSessionMgr_defaultsSetMaxFds
+
+class MediaContent(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MediaContent, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, MediaContent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_MediaContent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.MediaContent_getType(self)
+ def getDataLength(self): return _tinyWRAP.MediaContent_getDataLength(self)
+ def getData(self, *args): return _tinyWRAP.MediaContent_getData(self, *args)
+ __swig_getmethods__["parse"] = lambda x: _tinyWRAP.MediaContent_parse
+ if _newclass:parse = staticmethod(_tinyWRAP.MediaContent_parse)
+ def getPayloadLength(self): return _tinyWRAP.MediaContent_getPayloadLength(self)
+ def getPayload(self, *args): return _tinyWRAP.MediaContent_getPayload(self, *args)
+MediaContent_swigregister = _tinyWRAP.MediaContent_swigregister
+MediaContent_swigregister(MediaContent)
+
+def MediaContent_parse(*args):
+ return _tinyWRAP.MediaContent_parse(*args)
+MediaContent_parse = _tinyWRAP.MediaContent_parse
+
+class MediaContentCPIM(MediaContent):
+ __swig_setmethods__ = {}
+ for _s in [MediaContent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MediaContentCPIM, name, value)
+ __swig_getmethods__ = {}
+ for _s in [MediaContent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, MediaContentCPIM, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_MediaContentCPIM
+ __del__ = lambda self : None;
+ def getPayloadLength(self): return _tinyWRAP.MediaContentCPIM_getPayloadLength(self)
+ def getPayload(self, *args): return _tinyWRAP.MediaContentCPIM_getPayload(self, *args)
+ def getHeaderValue(self, *args): return _tinyWRAP.MediaContentCPIM_getHeaderValue(self, *args)
+MediaContentCPIM_swigregister = _tinyWRAP.MediaContentCPIM_swigregister
+MediaContentCPIM_swigregister(MediaContentCPIM)
+
+class SipUri(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SipUri, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SipUri, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_SipUri(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SipUri
+ __del__ = lambda self : None;
+ def isValid(self, *args): return _tinyWRAP.SipUri_isValid(self, *args)
+ def getScheme(self): return _tinyWRAP.SipUri_getScheme(self)
+ def getHost(self): return _tinyWRAP.SipUri_getHost(self)
+ def getPort(self): return _tinyWRAP.SipUri_getPort(self)
+ def getUserName(self): return _tinyWRAP.SipUri_getUserName(self)
+ def getPassword(self): return _tinyWRAP.SipUri_getPassword(self)
+ def getDisplayName(self): return _tinyWRAP.SipUri_getDisplayName(self)
+ def getParamValue(self, *args): return _tinyWRAP.SipUri_getParamValue(self, *args)
+ def setDisplayName(self, *args): return _tinyWRAP.SipUri_setDisplayName(self, *args)
+SipUri_swigregister = _tinyWRAP.SipUri_swigregister
+SipUri_swigregister(SipUri)
+
+class SdpMessage(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SdpMessage, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SdpMessage, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_SdpMessage()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SdpMessage
+ __del__ = lambda self : None;
+ def getSdpHeaderValue(self, *args): return _tinyWRAP.SdpMessage_getSdpHeaderValue(self, *args)
+ def getSdpHeaderAValue(self, *args): return _tinyWRAP.SdpMessage_getSdpHeaderAValue(self, *args)
+SdpMessage_swigregister = _tinyWRAP.SdpMessage_swigregister
+SdpMessage_swigregister(SdpMessage)
+
+class SipMessage(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SipMessage, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SipMessage, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_SipMessage()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SipMessage
+ __del__ = lambda self : None;
+ def isResponse(self): return _tinyWRAP.SipMessage_isResponse(self)
+ def getRequestType(self): return _tinyWRAP.SipMessage_getRequestType(self)
+ def getResponseCode(self): return _tinyWRAP.SipMessage_getResponseCode(self)
+ def getResponsePhrase(self): return _tinyWRAP.SipMessage_getResponsePhrase(self)
+ def getSipHeaderValue(self, *args): return _tinyWRAP.SipMessage_getSipHeaderValue(self, *args)
+ def getSipHeaderParamValue(self, *args): return _tinyWRAP.SipMessage_getSipHeaderParamValue(self, *args)
+ def getSipContentLength(self): return _tinyWRAP.SipMessage_getSipContentLength(self)
+ def getSipContent(self, *args): return _tinyWRAP.SipMessage_getSipContent(self, *args)
+ def getSdpMessage(self): return _tinyWRAP.SipMessage_getSdpMessage(self)
+SipMessage_swigregister = _tinyWRAP.SipMessage_swigregister
+SipMessage_swigregister(SipMessage)
+
+class SipEvent(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SipEvent, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SipEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_SipEvent
+ __del__ = lambda self : None;
+ def getCode(self): return _tinyWRAP.SipEvent_getCode(self)
+ def getPhrase(self): return _tinyWRAP.SipEvent_getPhrase(self)
+ def getBaseSession(self): return _tinyWRAP.SipEvent_getBaseSession(self)
+ def getSipMessage(self): return _tinyWRAP.SipEvent_getSipMessage(self)
+SipEvent_swigregister = _tinyWRAP.SipEvent_swigregister
+SipEvent_swigregister(SipEvent)
+
+class DialogEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, DialogEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, DialogEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_DialogEvent
+ __del__ = lambda self : None;
+DialogEvent_swigregister = _tinyWRAP.DialogEvent_swigregister
+DialogEvent_swigregister(DialogEvent)
+
+class StackEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, StackEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, StackEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_StackEvent
+ __del__ = lambda self : None;
+StackEvent_swigregister = _tinyWRAP.StackEvent_swigregister
+StackEvent_swigregister(StackEvent)
+
+class InviteEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, InviteEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, InviteEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_InviteEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.InviteEvent_getType(self)
+ def getMediaType(self): return _tinyWRAP.InviteEvent_getMediaType(self)
+ def getSession(self): return _tinyWRAP.InviteEvent_getSession(self)
+ def takeCallSessionOwnership(self): return _tinyWRAP.InviteEvent_takeCallSessionOwnership(self)
+ def takeMsrpSessionOwnership(self): return _tinyWRAP.InviteEvent_takeMsrpSessionOwnership(self)
+InviteEvent_swigregister = _tinyWRAP.InviteEvent_swigregister
+InviteEvent_swigregister(InviteEvent)
+
+class MessagingEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MessagingEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, MessagingEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_MessagingEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.MessagingEvent_getType(self)
+ def getSession(self): return _tinyWRAP.MessagingEvent_getSession(self)
+ def takeSessionOwnership(self): return _tinyWRAP.MessagingEvent_takeSessionOwnership(self)
+MessagingEvent_swigregister = _tinyWRAP.MessagingEvent_swigregister
+MessagingEvent_swigregister(MessagingEvent)
+
+class InfoEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, InfoEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, InfoEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_InfoEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.InfoEvent_getType(self)
+ def getSession(self): return _tinyWRAP.InfoEvent_getSession(self)
+ def takeSessionOwnership(self): return _tinyWRAP.InfoEvent_takeSessionOwnership(self)
+InfoEvent_swigregister = _tinyWRAP.InfoEvent_swigregister
+InfoEvent_swigregister(InfoEvent)
+
+class OptionsEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, OptionsEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, OptionsEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_OptionsEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.OptionsEvent_getType(self)
+ def getSession(self): return _tinyWRAP.OptionsEvent_getSession(self)
+ def takeSessionOwnership(self): return _tinyWRAP.OptionsEvent_takeSessionOwnership(self)
+OptionsEvent_swigregister = _tinyWRAP.OptionsEvent_swigregister
+OptionsEvent_swigregister(OptionsEvent)
+
+class PublicationEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, PublicationEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, PublicationEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_PublicationEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.PublicationEvent_getType(self)
+ def getSession(self): return _tinyWRAP.PublicationEvent_getSession(self)
+ def takeSessionOwnership(self): return _tinyWRAP.PublicationEvent_takeSessionOwnership(self)
+PublicationEvent_swigregister = _tinyWRAP.PublicationEvent_swigregister
+PublicationEvent_swigregister(PublicationEvent)
+
+class RegistrationEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, RegistrationEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, RegistrationEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_RegistrationEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.RegistrationEvent_getType(self)
+ def getSession(self): return _tinyWRAP.RegistrationEvent_getSession(self)
+ def takeSessionOwnership(self): return _tinyWRAP.RegistrationEvent_takeSessionOwnership(self)
+RegistrationEvent_swigregister = _tinyWRAP.RegistrationEvent_swigregister
+RegistrationEvent_swigregister(RegistrationEvent)
+
+class SubscriptionEvent(SipEvent):
+ __swig_setmethods__ = {}
+ for _s in [SipEvent]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SubscriptionEvent, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipEvent]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, SubscriptionEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_SubscriptionEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.SubscriptionEvent_getType(self)
+ def getSession(self): return _tinyWRAP.SubscriptionEvent_getSession(self)
+ def takeSessionOwnership(self): return _tinyWRAP.SubscriptionEvent_takeSessionOwnership(self)
+SubscriptionEvent_swigregister = _tinyWRAP.SubscriptionEvent_swigregister
+SubscriptionEvent_swigregister(SubscriptionEvent)
+
+class T140CallbackData(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, T140CallbackData, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, T140CallbackData, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_T140CallbackData
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.T140CallbackData_getType(self)
+ def getSize(self): return _tinyWRAP.T140CallbackData_getSize(self)
+ def getData(self, *args): return _tinyWRAP.T140CallbackData_getData(self, *args)
+T140CallbackData_swigregister = _tinyWRAP.T140CallbackData_swigregister
+T140CallbackData_swigregister(T140CallbackData)
+
+class T140Callback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, T140Callback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, T140Callback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == T140Callback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_T140Callback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_T140Callback
+ __del__ = lambda self : None;
+ def ondata(self, *args): return _tinyWRAP.T140Callback_ondata(self, *args)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_T140Callback(self)
+ return weakref_proxy(self)
+T140Callback_swigregister = _tinyWRAP.T140Callback_swigregister
+T140Callback_swigregister(T140Callback)
+
+class SipSession(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SipSession, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SipSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_SipSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SipSession
+ __del__ = lambda self : None;
+ def haveOwnership(self): return _tinyWRAP.SipSession_haveOwnership(self)
+ def addHeader(self, *args): return _tinyWRAP.SipSession_addHeader(self, *args)
+ def removeHeader(self, *args): return _tinyWRAP.SipSession_removeHeader(self, *args)
+ def addCaps(self, *args): return _tinyWRAP.SipSession_addCaps(self, *args)
+ def removeCaps(self, *args): return _tinyWRAP.SipSession_removeCaps(self, *args)
+ def setExpires(self, *args): return _tinyWRAP.SipSession_setExpires(self, *args)
+ def setFromUri(self, *args): return _tinyWRAP.SipSession_setFromUri(self, *args)
+ def setToUri(self, *args): return _tinyWRAP.SipSession_setToUri(self, *args)
+ def setSilentHangup(self, *args): return _tinyWRAP.SipSession_setSilentHangup(self, *args)
+ def addSigCompCompartment(self, *args): return _tinyWRAP.SipSession_addSigCompCompartment(self, *args)
+ def removeSigCompCompartment(self): return _tinyWRAP.SipSession_removeSigCompCompartment(self)
+ def getId(self): return _tinyWRAP.SipSession_getId(self)
+SipSession_swigregister = _tinyWRAP.SipSession_swigregister
+SipSession_swigregister(SipSession)
+
+class InviteSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, InviteSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, InviteSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_InviteSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_InviteSession
+ __del__ = lambda self : None;
+ def accept(self, *args): return _tinyWRAP.InviteSession_accept(self, *args)
+ def hangup(self, *args): return _tinyWRAP.InviteSession_hangup(self, *args)
+ def reject(self, *args): return _tinyWRAP.InviteSession_reject(self, *args)
+ def sendInfo(self, *args): return _tinyWRAP.InviteSession_sendInfo(self, *args)
+ def getMediaMgr(self): return _tinyWRAP.InviteSession_getMediaMgr(self)
+InviteSession_swigregister = _tinyWRAP.InviteSession_swigregister
+InviteSession_swigregister(InviteSession)
+
+class CallSession(InviteSession):
+ __swig_setmethods__ = {}
+ for _s in [InviteSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, CallSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [InviteSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, CallSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_CallSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_CallSession
+ __del__ = lambda self : None;
+ def callAudio(self, *args): return _tinyWRAP.CallSession_callAudio(self, *args)
+ def callAudioVideo(self, *args): return _tinyWRAP.CallSession_callAudioVideo(self, *args)
+ def callVideo(self, *args): return _tinyWRAP.CallSession_callVideo(self, *args)
+ def call(self, *args): return _tinyWRAP.CallSession_call(self, *args)
+ def setSessionTimer(self, *args): return _tinyWRAP.CallSession_setSessionTimer(self, *args)
+ def set100rel(self, *args): return _tinyWRAP.CallSession_set100rel(self, *args)
+ def setRtcp(self, *args): return _tinyWRAP.CallSession_setRtcp(self, *args)
+ def setRtcpMux(self, *args): return _tinyWRAP.CallSession_setRtcpMux(self, *args)
+ def setSRtpMode(self, *args): return _tinyWRAP.CallSession_setSRtpMode(self, *args)
+ def setAvpfMode(self, *args): return _tinyWRAP.CallSession_setAvpfMode(self, *args)
+ def setICE(self, *args): return _tinyWRAP.CallSession_setICE(self, *args)
+ def setICEStun(self, *args): return _tinyWRAP.CallSession_setICEStun(self, *args)
+ def setICETurn(self, *args): return _tinyWRAP.CallSession_setICETurn(self, *args)
+ def setSTUNServer(self, *args): return _tinyWRAP.CallSession_setSTUNServer(self, *args)
+ def setSTUNCred(self, *args): return _tinyWRAP.CallSession_setSTUNCred(self, *args)
+ def setVideoFps(self, *args): return _tinyWRAP.CallSession_setVideoFps(self, *args)
+ def setVideoBandwidthUploadMax(self, *args): return _tinyWRAP.CallSession_setVideoBandwidthUploadMax(self, *args)
+ def setVideoBandwidthDownloadMax(self, *args): return _tinyWRAP.CallSession_setVideoBandwidthDownloadMax(self, *args)
+ def setVideoPrefSize(self, *args): return _tinyWRAP.CallSession_setVideoPrefSize(self, *args)
+ def setQoS(self, *args): return _tinyWRAP.CallSession_setQoS(self, *args)
+ def hold(self, *args): return _tinyWRAP.CallSession_hold(self, *args)
+ def resume(self, *args): return _tinyWRAP.CallSession_resume(self, *args)
+ def transfer(self, *args): return _tinyWRAP.CallSession_transfer(self, *args)
+ def acceptTransfer(self, *args): return _tinyWRAP.CallSession_acceptTransfer(self, *args)
+ def rejectTransfer(self, *args): return _tinyWRAP.CallSession_rejectTransfer(self, *args)
+ def sendDTMF(self, *args): return _tinyWRAP.CallSession_sendDTMF(self, *args)
+ def getSessionTransferId(self): return _tinyWRAP.CallSession_getSessionTransferId(self)
+ def sendT140Data(self, *args): return _tinyWRAP.CallSession_sendT140Data(self, *args)
+ def setT140Callback(self, *args): return _tinyWRAP.CallSession_setT140Callback(self, *args)
+CallSession_swigregister = _tinyWRAP.CallSession_swigregister
+CallSession_swigregister(CallSession)
+
+class MsrpSession(InviteSession):
+ __swig_setmethods__ = {}
+ for _s in [InviteSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MsrpSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [InviteSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, MsrpSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_MsrpSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_MsrpSession
+ __del__ = lambda self : None;
+ def setCallback(self, *args): return _tinyWRAP.MsrpSession_setCallback(self, *args)
+ def callMsrp(self, *args): return _tinyWRAP.MsrpSession_callMsrp(self, *args)
+ def sendMessage(self, *args): return _tinyWRAP.MsrpSession_sendMessage(self, *args)
+ def sendFile(self, *args): return _tinyWRAP.MsrpSession_sendFile(self, *args)
+MsrpSession_swigregister = _tinyWRAP.MsrpSession_swigregister
+MsrpSession_swigregister(MsrpSession)
+
+class MessagingSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MessagingSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, MessagingSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_MessagingSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_MessagingSession
+ __del__ = lambda self : None;
+ def send(self, *args): return _tinyWRAP.MessagingSession_send(self, *args)
+ def accept(self, *args): return _tinyWRAP.MessagingSession_accept(self, *args)
+ def reject(self, *args): return _tinyWRAP.MessagingSession_reject(self, *args)
+MessagingSession_swigregister = _tinyWRAP.MessagingSession_swigregister
+MessagingSession_swigregister(MessagingSession)
+
+class InfoSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, InfoSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, InfoSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_InfoSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_InfoSession
+ __del__ = lambda self : None;
+ def send(self, *args): return _tinyWRAP.InfoSession_send(self, *args)
+ def accept(self, *args): return _tinyWRAP.InfoSession_accept(self, *args)
+ def reject(self, *args): return _tinyWRAP.InfoSession_reject(self, *args)
+InfoSession_swigregister = _tinyWRAP.InfoSession_swigregister
+InfoSession_swigregister(InfoSession)
+
+class OptionsSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, OptionsSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, OptionsSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_OptionsSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_OptionsSession
+ __del__ = lambda self : None;
+ def send(self, *args): return _tinyWRAP.OptionsSession_send(self, *args)
+ def accept(self, *args): return _tinyWRAP.OptionsSession_accept(self, *args)
+ def reject(self, *args): return _tinyWRAP.OptionsSession_reject(self, *args)
+OptionsSession_swigregister = _tinyWRAP.OptionsSession_swigregister
+OptionsSession_swigregister(OptionsSession)
+
+class PublicationSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, PublicationSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, PublicationSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_PublicationSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_PublicationSession
+ __del__ = lambda self : None;
+ def publish(self, *args): return _tinyWRAP.PublicationSession_publish(self, *args)
+ def unPublish(self, *args): return _tinyWRAP.PublicationSession_unPublish(self, *args)
+PublicationSession_swigregister = _tinyWRAP.PublicationSession_swigregister
+PublicationSession_swigregister(PublicationSession)
+
+class RegistrationSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, RegistrationSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, RegistrationSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_RegistrationSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_RegistrationSession
+ __del__ = lambda self : None;
+ def register_(self, *args): return _tinyWRAP.RegistrationSession_register_(self, *args)
+ def unRegister(self, *args): return _tinyWRAP.RegistrationSession_unRegister(self, *args)
+ def accept(self, *args): return _tinyWRAP.RegistrationSession_accept(self, *args)
+ def reject(self, *args): return _tinyWRAP.RegistrationSession_reject(self, *args)
+RegistrationSession_swigregister = _tinyWRAP.RegistrationSession_swigregister
+RegistrationSession_swigregister(RegistrationSession)
+
+class SubscriptionSession(SipSession):
+ __swig_setmethods__ = {}
+ for _s in [SipSession]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SubscriptionSession, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SipSession]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, SubscriptionSession, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_SubscriptionSession(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SubscriptionSession
+ __del__ = lambda self : None;
+ def subscribe(self): return _tinyWRAP.SubscriptionSession_subscribe(self)
+ def unSubscribe(self): return _tinyWRAP.SubscriptionSession_unSubscribe(self)
+SubscriptionSession_swigregister = _tinyWRAP.SubscriptionSession_swigregister
+SubscriptionSession_swigregister(SubscriptionSession)
+
+twrap_proxy_plugin_audio_producer = _tinyWRAP.twrap_proxy_plugin_audio_producer
+twrap_proxy_plugin_video_producer = _tinyWRAP.twrap_proxy_plugin_video_producer
+twrap_proxy_plugin_audio_consumer = _tinyWRAP.twrap_proxy_plugin_audio_consumer
+twrap_proxy_plugin_video_consumer = _tinyWRAP.twrap_proxy_plugin_video_consumer
+class ProxyPluginMgr(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyPluginMgr, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyPluginMgr, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyPluginMgr
+ __del__ = lambda self : None;
+ __swig_getmethods__["createInstance"] = lambda x: _tinyWRAP.ProxyPluginMgr_createInstance
+ if _newclass:createInstance = staticmethod(_tinyWRAP.ProxyPluginMgr_createInstance)
+ __swig_getmethods__["getInstance"] = lambda x: _tinyWRAP.ProxyPluginMgr_getInstance
+ if _newclass:getInstance = staticmethod(_tinyWRAP.ProxyPluginMgr_getInstance)
+ def findPlugin(self, *args): return _tinyWRAP.ProxyPluginMgr_findPlugin(self, *args)
+ def findAudioConsumer(self, *args): return _tinyWRAP.ProxyPluginMgr_findAudioConsumer(self, *args)
+ def findVideoConsumer(self, *args): return _tinyWRAP.ProxyPluginMgr_findVideoConsumer(self, *args)
+ def findAudioProducer(self, *args): return _tinyWRAP.ProxyPluginMgr_findAudioProducer(self, *args)
+ def findVideoProducer(self, *args): return _tinyWRAP.ProxyPluginMgr_findVideoProducer(self, *args)
+ProxyPluginMgr_swigregister = _tinyWRAP.ProxyPluginMgr_swigregister
+ProxyPluginMgr_swigregister(ProxyPluginMgr)
+
+def ProxyPluginMgr_createInstance(*args):
+ return _tinyWRAP.ProxyPluginMgr_createInstance(*args)
+ProxyPluginMgr_createInstance = _tinyWRAP.ProxyPluginMgr_createInstance
+
+def ProxyPluginMgr_getInstance():
+ return _tinyWRAP.ProxyPluginMgr_getInstance()
+ProxyPluginMgr_getInstance = _tinyWRAP.ProxyPluginMgr_getInstance
+
+class ProxyPluginMgrCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyPluginMgrCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyPluginMgrCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == ProxyPluginMgrCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_ProxyPluginMgrCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_ProxyPluginMgrCallback
+ __del__ = lambda self : None;
+ def OnPluginCreated(self, *args): return _tinyWRAP.ProxyPluginMgrCallback_OnPluginCreated(self, *args)
+ def OnPluginDestroyed(self, *args): return _tinyWRAP.ProxyPluginMgrCallback_OnPluginDestroyed(self, *args)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_ProxyPluginMgrCallback(self)
+ return weakref_proxy(self)
+ProxyPluginMgrCallback_swigregister = _tinyWRAP.ProxyPluginMgrCallback_swigregister
+ProxyPluginMgrCallback_swigregister(ProxyPluginMgrCallback)
+
+class ProxyPlugin(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyPlugin, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyPlugin, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyPlugin
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.ProxyPlugin_getType(self)
+ def getId(self): return _tinyWRAP.ProxyPlugin_getId(self)
+ProxyPlugin_swigregister = _tinyWRAP.ProxyPlugin_swigregister
+ProxyPlugin_swigregister(ProxyPlugin)
+
+class ProxyAudioConsumerCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyAudioConsumerCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyAudioConsumerCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == ProxyAudioConsumerCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_ProxyAudioConsumerCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_ProxyAudioConsumerCallback
+ __del__ = lambda self : None;
+ def prepare(self, *args): return _tinyWRAP.ProxyAudioConsumerCallback_prepare(self, *args)
+ def start(self): return _tinyWRAP.ProxyAudioConsumerCallback_start(self)
+ def pause(self): return _tinyWRAP.ProxyAudioConsumerCallback_pause(self)
+ def stop(self): return _tinyWRAP.ProxyAudioConsumerCallback_stop(self)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_ProxyAudioConsumerCallback(self)
+ return weakref_proxy(self)
+ProxyAudioConsumerCallback_swigregister = _tinyWRAP.ProxyAudioConsumerCallback_swigregister
+ProxyAudioConsumerCallback_swigregister(ProxyAudioConsumerCallback)
+
+class ProxyAudioConsumer(ProxyPlugin):
+ __swig_setmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyAudioConsumer, name, value)
+ __swig_getmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyAudioConsumer, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyAudioConsumer
+ __del__ = lambda self : None;
+ def setActualSndCardPlaybackParams(self, *args): return _tinyWRAP.ProxyAudioConsumer_setActualSndCardPlaybackParams(self, *args)
+ def queryForResampler(self, *args): return _tinyWRAP.ProxyAudioConsumer_queryForResampler(self, *args)
+ def setPullBuffer(self, *args): return _tinyWRAP.ProxyAudioConsumer_setPullBuffer(self, *args)
+ def pull(self, *args): return _tinyWRAP.ProxyAudioConsumer_pull(self, *args)
+ def setGain(self, *args): return _tinyWRAP.ProxyAudioConsumer_setGain(self, *args)
+ def getGain(self): return _tinyWRAP.ProxyAudioConsumer_getGain(self)
+ def reset(self): return _tinyWRAP.ProxyAudioConsumer_reset(self)
+ def setCallback(self, *args): return _tinyWRAP.ProxyAudioConsumer_setCallback(self, *args)
+ def getMediaSessionId(self): return _tinyWRAP.ProxyAudioConsumer_getMediaSessionId(self)
+ __swig_getmethods__["registerPlugin"] = lambda x: _tinyWRAP.ProxyAudioConsumer_registerPlugin
+ if _newclass:registerPlugin = staticmethod(_tinyWRAP.ProxyAudioConsumer_registerPlugin)
+ProxyAudioConsumer_swigregister = _tinyWRAP.ProxyAudioConsumer_swigregister
+ProxyAudioConsumer_swigregister(ProxyAudioConsumer)
+
+def ProxyAudioConsumer_registerPlugin():
+ return _tinyWRAP.ProxyAudioConsumer_registerPlugin()
+ProxyAudioConsumer_registerPlugin = _tinyWRAP.ProxyAudioConsumer_registerPlugin
+
+class ProxyVideoConsumerCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyVideoConsumerCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyVideoConsumerCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == ProxyVideoConsumerCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_ProxyVideoConsumerCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_ProxyVideoConsumerCallback
+ __del__ = lambda self : None;
+ def prepare(self, *args): return _tinyWRAP.ProxyVideoConsumerCallback_prepare(self, *args)
+ def consume(self, *args): return _tinyWRAP.ProxyVideoConsumerCallback_consume(self, *args)
+ def bufferCopied(self, *args): return _tinyWRAP.ProxyVideoConsumerCallback_bufferCopied(self, *args)
+ def start(self): return _tinyWRAP.ProxyVideoConsumerCallback_start(self)
+ def pause(self): return _tinyWRAP.ProxyVideoConsumerCallback_pause(self)
+ def stop(self): return _tinyWRAP.ProxyVideoConsumerCallback_stop(self)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_ProxyVideoConsumerCallback(self)
+ return weakref_proxy(self)
+ProxyVideoConsumerCallback_swigregister = _tinyWRAP.ProxyVideoConsumerCallback_swigregister
+ProxyVideoConsumerCallback_swigregister(ProxyVideoConsumerCallback)
+
+class ProxyVideoConsumer(ProxyPlugin):
+ __swig_setmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyVideoConsumer, name, value)
+ __swig_getmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyVideoConsumer, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyVideoConsumer
+ __del__ = lambda self : None;
+ def setDisplaySize(self, *args): return _tinyWRAP.ProxyVideoConsumer_setDisplaySize(self, *args)
+ def getDisplayWidth(self): return _tinyWRAP.ProxyVideoConsumer_getDisplayWidth(self)
+ def getDisplayHeight(self): return _tinyWRAP.ProxyVideoConsumer_getDisplayHeight(self)
+ def getDecodedWidth(self): return _tinyWRAP.ProxyVideoConsumer_getDecodedWidth(self)
+ def getDecodedHeight(self): return _tinyWRAP.ProxyVideoConsumer_getDecodedHeight(self)
+ def setCallback(self, *args): return _tinyWRAP.ProxyVideoConsumer_setCallback(self, *args)
+ def setAutoResizeDisplay(self, *args): return _tinyWRAP.ProxyVideoConsumer_setAutoResizeDisplay(self, *args)
+ def getAutoResizeDisplay(self): return _tinyWRAP.ProxyVideoConsumer_getAutoResizeDisplay(self)
+ def setConsumeBuffer(self, *args): return _tinyWRAP.ProxyVideoConsumer_setConsumeBuffer(self, *args)
+ def pull(self, *args): return _tinyWRAP.ProxyVideoConsumer_pull(self, *args)
+ def reset(self): return _tinyWRAP.ProxyVideoConsumer_reset(self)
+ def getMediaSessionId(self): return _tinyWRAP.ProxyVideoConsumer_getMediaSessionId(self)
+ __swig_getmethods__["registerPlugin"] = lambda x: _tinyWRAP.ProxyVideoConsumer_registerPlugin
+ if _newclass:registerPlugin = staticmethod(_tinyWRAP.ProxyVideoConsumer_registerPlugin)
+ __swig_getmethods__["setDefaultChroma"] = lambda x: _tinyWRAP.ProxyVideoConsumer_setDefaultChroma
+ if _newclass:setDefaultChroma = staticmethod(_tinyWRAP.ProxyVideoConsumer_setDefaultChroma)
+ __swig_getmethods__["setDefaultAutoResizeDisplay"] = lambda x: _tinyWRAP.ProxyVideoConsumer_setDefaultAutoResizeDisplay
+ if _newclass:setDefaultAutoResizeDisplay = staticmethod(_tinyWRAP.ProxyVideoConsumer_setDefaultAutoResizeDisplay)
+ProxyVideoConsumer_swigregister = _tinyWRAP.ProxyVideoConsumer_swigregister
+ProxyVideoConsumer_swigregister(ProxyVideoConsumer)
+
+def ProxyVideoConsumer_registerPlugin():
+ return _tinyWRAP.ProxyVideoConsumer_registerPlugin()
+ProxyVideoConsumer_registerPlugin = _tinyWRAP.ProxyVideoConsumer_registerPlugin
+
+def ProxyVideoConsumer_setDefaultChroma(*args):
+ return _tinyWRAP.ProxyVideoConsumer_setDefaultChroma(*args)
+ProxyVideoConsumer_setDefaultChroma = _tinyWRAP.ProxyVideoConsumer_setDefaultChroma
+
+def ProxyVideoConsumer_setDefaultAutoResizeDisplay(*args):
+ return _tinyWRAP.ProxyVideoConsumer_setDefaultAutoResizeDisplay(*args)
+ProxyVideoConsumer_setDefaultAutoResizeDisplay = _tinyWRAP.ProxyVideoConsumer_setDefaultAutoResizeDisplay
+
+class ProxyVideoFrame(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyVideoFrame, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyVideoFrame, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyVideoFrame
+ __del__ = lambda self : None;
+ def getSize(self): return _tinyWRAP.ProxyVideoFrame_getSize(self)
+ def getContent(self, *args): return _tinyWRAP.ProxyVideoFrame_getContent(self, *args)
+ def getFrameWidth(self): return _tinyWRAP.ProxyVideoFrame_getFrameWidth(self)
+ def getFrameHeight(self): return _tinyWRAP.ProxyVideoFrame_getFrameHeight(self)
+ProxyVideoFrame_swigregister = _tinyWRAP.ProxyVideoFrame_swigregister
+ProxyVideoFrame_swigregister(ProxyVideoFrame)
+
+class ProxyAudioProducerCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyAudioProducerCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyAudioProducerCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == ProxyAudioProducerCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_ProxyAudioProducerCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_ProxyAudioProducerCallback
+ __del__ = lambda self : None;
+ def prepare(self, *args): return _tinyWRAP.ProxyAudioProducerCallback_prepare(self, *args)
+ def start(self): return _tinyWRAP.ProxyAudioProducerCallback_start(self)
+ def pause(self): return _tinyWRAP.ProxyAudioProducerCallback_pause(self)
+ def stop(self): return _tinyWRAP.ProxyAudioProducerCallback_stop(self)
+ def fillPushBuffer(self): return _tinyWRAP.ProxyAudioProducerCallback_fillPushBuffer(self)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_ProxyAudioProducerCallback(self)
+ return weakref_proxy(self)
+ProxyAudioProducerCallback_swigregister = _tinyWRAP.ProxyAudioProducerCallback_swigregister
+ProxyAudioProducerCallback_swigregister(ProxyAudioProducerCallback)
+
+class ProxyAudioProducer(ProxyPlugin):
+ __swig_setmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyAudioProducer, name, value)
+ __swig_getmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyAudioProducer, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyAudioProducer
+ __del__ = lambda self : None;
+ def setActualSndCardRecordParams(self, *args): return _tinyWRAP.ProxyAudioProducer_setActualSndCardRecordParams(self, *args)
+ def setPushBuffer(self, *args): return _tinyWRAP.ProxyAudioProducer_setPushBuffer(self, *args)
+ def push(self, *args): return _tinyWRAP.ProxyAudioProducer_push(self, *args)
+ def setGain(self, *args): return _tinyWRAP.ProxyAudioProducer_setGain(self, *args)
+ def getGain(self): return _tinyWRAP.ProxyAudioProducer_getGain(self)
+ def setCallback(self, *args): return _tinyWRAP.ProxyAudioProducer_setCallback(self, *args)
+ def getMediaSessionId(self): return _tinyWRAP.ProxyAudioProducer_getMediaSessionId(self)
+ __swig_getmethods__["registerPlugin"] = lambda x: _tinyWRAP.ProxyAudioProducer_registerPlugin
+ if _newclass:registerPlugin = staticmethod(_tinyWRAP.ProxyAudioProducer_registerPlugin)
+ProxyAudioProducer_swigregister = _tinyWRAP.ProxyAudioProducer_swigregister
+ProxyAudioProducer_swigregister(ProxyAudioProducer)
+
+def ProxyAudioProducer_registerPlugin():
+ return _tinyWRAP.ProxyAudioProducer_registerPlugin()
+ProxyAudioProducer_registerPlugin = _tinyWRAP.ProxyAudioProducer_registerPlugin
+
+class ProxyVideoProducerCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyVideoProducerCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyVideoProducerCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == ProxyVideoProducerCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_ProxyVideoProducerCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_ProxyVideoProducerCallback
+ __del__ = lambda self : None;
+ def prepare(self, *args): return _tinyWRAP.ProxyVideoProducerCallback_prepare(self, *args)
+ def start(self): return _tinyWRAP.ProxyVideoProducerCallback_start(self)
+ def pause(self): return _tinyWRAP.ProxyVideoProducerCallback_pause(self)
+ def stop(self): return _tinyWRAP.ProxyVideoProducerCallback_stop(self)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_ProxyVideoProducerCallback(self)
+ return weakref_proxy(self)
+ProxyVideoProducerCallback_swigregister = _tinyWRAP.ProxyVideoProducerCallback_swigregister
+ProxyVideoProducerCallback_swigregister(ProxyVideoProducerCallback)
+
+class ProxyVideoProducer(ProxyPlugin):
+ __swig_setmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, ProxyVideoProducer, name, value)
+ __swig_getmethods__ = {}
+ for _s in [ProxyPlugin]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, ProxyVideoProducer, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_ProxyVideoProducer
+ __del__ = lambda self : None;
+ def getRotation(self): return _tinyWRAP.ProxyVideoProducer_getRotation(self)
+ def setRotation(self, *args): return _tinyWRAP.ProxyVideoProducer_setRotation(self, *args)
+ def getMirror(self): return _tinyWRAP.ProxyVideoProducer_getMirror(self)
+ def setMirror(self, *args): return _tinyWRAP.ProxyVideoProducer_setMirror(self, *args)
+ def setActualCameraOutputSize(self, *args): return _tinyWRAP.ProxyVideoProducer_setActualCameraOutputSize(self, *args)
+ def push(self, *args): return _tinyWRAP.ProxyVideoProducer_push(self, *args)
+ def setCallback(self, *args): return _tinyWRAP.ProxyVideoProducer_setCallback(self, *args)
+ def getMediaSessionId(self): return _tinyWRAP.ProxyVideoProducer_getMediaSessionId(self)
+ __swig_getmethods__["registerPlugin"] = lambda x: _tinyWRAP.ProxyVideoProducer_registerPlugin
+ if _newclass:registerPlugin = staticmethod(_tinyWRAP.ProxyVideoProducer_registerPlugin)
+ __swig_getmethods__["setDefaultChroma"] = lambda x: _tinyWRAP.ProxyVideoProducer_setDefaultChroma
+ if _newclass:setDefaultChroma = staticmethod(_tinyWRAP.ProxyVideoProducer_setDefaultChroma)
+ProxyVideoProducer_swigregister = _tinyWRAP.ProxyVideoProducer_swigregister
+ProxyVideoProducer_swigregister(ProxyVideoProducer)
+
+def ProxyVideoProducer_registerPlugin():
+ return _tinyWRAP.ProxyVideoProducer_registerPlugin()
+ProxyVideoProducer_registerPlugin = _tinyWRAP.ProxyVideoProducer_registerPlugin
+
+def ProxyVideoProducer_setDefaultChroma(*args):
+ return _tinyWRAP.ProxyVideoProducer_setDefaultChroma(*args)
+ProxyVideoProducer_setDefaultChroma = _tinyWRAP.ProxyVideoProducer_setDefaultChroma
+
+class SipCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SipCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SipCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == SipCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_SipCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SipCallback
+ __del__ = lambda self : None;
+ def OnDialogEvent(self, *args): return _tinyWRAP.SipCallback_OnDialogEvent(self, *args)
+ def OnStackEvent(self, *args): return _tinyWRAP.SipCallback_OnStackEvent(self, *args)
+ def OnInviteEvent(self, *args): return _tinyWRAP.SipCallback_OnInviteEvent(self, *args)
+ def OnMessagingEvent(self, *args): return _tinyWRAP.SipCallback_OnMessagingEvent(self, *args)
+ def OnInfoEvent(self, *args): return _tinyWRAP.SipCallback_OnInfoEvent(self, *args)
+ def OnOptionsEvent(self, *args): return _tinyWRAP.SipCallback_OnOptionsEvent(self, *args)
+ def OnPublicationEvent(self, *args): return _tinyWRAP.SipCallback_OnPublicationEvent(self, *args)
+ def OnRegistrationEvent(self, *args): return _tinyWRAP.SipCallback_OnRegistrationEvent(self, *args)
+ def OnSubscriptionEvent(self, *args): return _tinyWRAP.SipCallback_OnSubscriptionEvent(self, *args)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_SipCallback(self)
+ return weakref_proxy(self)
+SipCallback_swigregister = _tinyWRAP.SipCallback_swigregister
+SipCallback_swigregister(SipCallback)
+
+class SafeObject(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SafeObject, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SafeObject, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_SafeObject()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SafeObject
+ __del__ = lambda self : None;
+ def Lock(self): return _tinyWRAP.SafeObject_Lock(self)
+ def UnLock(self): return _tinyWRAP.SafeObject_UnLock(self)
+SafeObject_swigregister = _tinyWRAP.SafeObject_swigregister
+SafeObject_swigregister(SafeObject)
+
+class SipStack(SafeObject):
+ __swig_setmethods__ = {}
+ for _s in [SafeObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SipStack, name, value)
+ __swig_getmethods__ = {}
+ for _s in [SafeObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
+ __getattr__ = lambda self, name: _swig_getattr(self, SipStack, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_SipStack(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SipStack
+ __del__ = lambda self : None;
+ def start(self): return _tinyWRAP.SipStack_start(self)
+ def setDebugCallback(self, *args): return _tinyWRAP.SipStack_setDebugCallback(self, *args)
+ def setDisplayName(self, *args): return _tinyWRAP.SipStack_setDisplayName(self, *args)
+ def setRealm(self, *args): return _tinyWRAP.SipStack_setRealm(self, *args)
+ def setIMPI(self, *args): return _tinyWRAP.SipStack_setIMPI(self, *args)
+ def setIMPU(self, *args): return _tinyWRAP.SipStack_setIMPU(self, *args)
+ def setPassword(self, *args): return _tinyWRAP.SipStack_setPassword(self, *args)
+ def setAMF(self, *args): return _tinyWRAP.SipStack_setAMF(self, *args)
+ def setOperatorId(self, *args): return _tinyWRAP.SipStack_setOperatorId(self, *args)
+ def setProxyCSCF(self, *args): return _tinyWRAP.SipStack_setProxyCSCF(self, *args)
+ def setLocalIP(self, *args): return _tinyWRAP.SipStack_setLocalIP(self, *args)
+ def setLocalPort(self, *args): return _tinyWRAP.SipStack_setLocalPort(self, *args)
+ def setEarlyIMS(self, *args): return _tinyWRAP.SipStack_setEarlyIMS(self, *args)
+ def addHeader(self, *args): return _tinyWRAP.SipStack_addHeader(self, *args)
+ def removeHeader(self, *args): return _tinyWRAP.SipStack_removeHeader(self, *args)
+ def addDnsServer(self, *args): return _tinyWRAP.SipStack_addDnsServer(self, *args)
+ def setDnsDiscovery(self, *args): return _tinyWRAP.SipStack_setDnsDiscovery(self, *args)
+ def setAoR(self, *args): return _tinyWRAP.SipStack_setAoR(self, *args)
+ def setSigCompParams(self, *args): return _tinyWRAP.SipStack_setSigCompParams(self, *args)
+ def addSigCompCompartment(self, *args): return _tinyWRAP.SipStack_addSigCompCompartment(self, *args)
+ def removeSigCompCompartment(self, *args): return _tinyWRAP.SipStack_removeSigCompCompartment(self, *args)
+ def setSTUNEnabledForICE(self, *args): return _tinyWRAP.SipStack_setSTUNEnabledForICE(self, *args)
+ def setSTUNServer(self, *args): return _tinyWRAP.SipStack_setSTUNServer(self, *args)
+ def setSTUNCred(self, *args): return _tinyWRAP.SipStack_setSTUNCred(self, *args)
+ def setSTUNEnabled(self, *args): return _tinyWRAP.SipStack_setSTUNEnabled(self, *args)
+ def setTLSSecAgree(self, *args): return _tinyWRAP.SipStack_setTLSSecAgree(self, *args)
+ def setSSLCertificates(self, *args): return _tinyWRAP.SipStack_setSSLCertificates(self, *args)
+ def setSSLCretificates(self, *args): return _tinyWRAP.SipStack_setSSLCretificates(self, *args)
+ def setIPSecSecAgree(self, *args): return _tinyWRAP.SipStack_setIPSecSecAgree(self, *args)
+ def setIPSecParameters(self, *args): return _tinyWRAP.SipStack_setIPSecParameters(self, *args)
+ def dnsENUM(self, *args): return _tinyWRAP.SipStack_dnsENUM(self, *args)
+ def dnsNaptrSrv(self, *args): return _tinyWRAP.SipStack_dnsNaptrSrv(self, *args)
+ def dnsSrv(self, *args): return _tinyWRAP.SipStack_dnsSrv(self, *args)
+ def setMaxFDs(self, *args): return _tinyWRAP.SipStack_setMaxFDs(self, *args)
+ def getLocalIPnPort(self, *args): return _tinyWRAP.SipStack_getLocalIPnPort(self, *args)
+ def getPreferredIdentity(self): return _tinyWRAP.SipStack_getPreferredIdentity(self)
+ def isValid(self): return _tinyWRAP.SipStack_isValid(self)
+ def stop(self): return _tinyWRAP.SipStack_stop(self)
+ __swig_getmethods__["initialize"] = lambda x: _tinyWRAP.SipStack_initialize
+ if _newclass:initialize = staticmethod(_tinyWRAP.SipStack_initialize)
+ __swig_getmethods__["deInitialize"] = lambda x: _tinyWRAP.SipStack_deInitialize
+ if _newclass:deInitialize = staticmethod(_tinyWRAP.SipStack_deInitialize)
+ __swig_getmethods__["setCodecs"] = lambda x: _tinyWRAP.SipStack_setCodecs
+ if _newclass:setCodecs = staticmethod(_tinyWRAP.SipStack_setCodecs)
+ __swig_getmethods__["setCodecs_2"] = lambda x: _tinyWRAP.SipStack_setCodecs_2
+ if _newclass:setCodecs_2 = staticmethod(_tinyWRAP.SipStack_setCodecs_2)
+ __swig_getmethods__["setCodecPriority"] = lambda x: _tinyWRAP.SipStack_setCodecPriority
+ if _newclass:setCodecPriority = staticmethod(_tinyWRAP.SipStack_setCodecPriority)
+ __swig_getmethods__["setCodecPriority_2"] = lambda x: _tinyWRAP.SipStack_setCodecPriority_2
+ if _newclass:setCodecPriority_2 = staticmethod(_tinyWRAP.SipStack_setCodecPriority_2)
+ __swig_getmethods__["isCodecSupported"] = lambda x: _tinyWRAP.SipStack_isCodecSupported
+ if _newclass:isCodecSupported = staticmethod(_tinyWRAP.SipStack_isCodecSupported)
+ __swig_getmethods__["isIPSecSupported"] = lambda x: _tinyWRAP.SipStack_isIPSecSupported
+ if _newclass:isIPSecSupported = staticmethod(_tinyWRAP.SipStack_isIPSecSupported)
+SipStack_swigregister = _tinyWRAP.SipStack_swigregister
+SipStack_swigregister(SipStack)
+
+def SipStack_initialize():
+ return _tinyWRAP.SipStack_initialize()
+SipStack_initialize = _tinyWRAP.SipStack_initialize
+
+def SipStack_deInitialize():
+ return _tinyWRAP.SipStack_deInitialize()
+SipStack_deInitialize = _tinyWRAP.SipStack_deInitialize
+
+def SipStack_setCodecs(*args):
+ return _tinyWRAP.SipStack_setCodecs(*args)
+SipStack_setCodecs = _tinyWRAP.SipStack_setCodecs
+
+def SipStack_setCodecs_2(*args):
+ return _tinyWRAP.SipStack_setCodecs_2(*args)
+SipStack_setCodecs_2 = _tinyWRAP.SipStack_setCodecs_2
+
+def SipStack_setCodecPriority(*args):
+ return _tinyWRAP.SipStack_setCodecPriority(*args)
+SipStack_setCodecPriority = _tinyWRAP.SipStack_setCodecPriority
+
+def SipStack_setCodecPriority_2(*args):
+ return _tinyWRAP.SipStack_setCodecPriority_2(*args)
+SipStack_setCodecPriority_2 = _tinyWRAP.SipStack_setCodecPriority_2
+
+def SipStack_isCodecSupported(*args):
+ return _tinyWRAP.SipStack_isCodecSupported(*args)
+SipStack_isCodecSupported = _tinyWRAP.SipStack_isCodecSupported
+
+def SipStack_isIPSecSupported():
+ return _tinyWRAP.SipStack_isIPSecSupported()
+SipStack_isIPSecSupported = _tinyWRAP.SipStack_isIPSecSupported
+
+tsip_stack_mode_ua = _tinyWRAP.tsip_stack_mode_ua
+tsip_stack_mode_p2p = _tinyWRAP.tsip_stack_mode_p2p
+tsip_stack_mode_mediaproxy = _tinyWRAP.tsip_stack_mode_mediaproxy
+tsip_stack_mode_mcu = _tinyWRAP.tsip_stack_mode_mcu
+tsip_NONE = _tinyWRAP.tsip_NONE
+tsip_ACK = _tinyWRAP.tsip_ACK
+tsip_BYE = _tinyWRAP.tsip_BYE
+tsip_CANCEL = _tinyWRAP.tsip_CANCEL
+tsip_INVITE = _tinyWRAP.tsip_INVITE
+tsip_OPTIONS = _tinyWRAP.tsip_OPTIONS
+tsip_REGISTER = _tinyWRAP.tsip_REGISTER
+tsip_SUBSCRIBE = _tinyWRAP.tsip_SUBSCRIBE
+tsip_NOTIFY = _tinyWRAP.tsip_NOTIFY
+tsip_REFER = _tinyWRAP.tsip_REFER
+tsip_INFO = _tinyWRAP.tsip_INFO
+tsip_UPDATE = _tinyWRAP.tsip_UPDATE
+tsip_MESSAGE = _tinyWRAP.tsip_MESSAGE
+tsip_PUBLISH = _tinyWRAP.tsip_PUBLISH
+tsip_PRACK = _tinyWRAP.tsip_PRACK
+tsip_event_invite = _tinyWRAP.tsip_event_invite
+tsip_event_message = _tinyWRAP.tsip_event_message
+tsip_event_info = _tinyWRAP.tsip_event_info
+tsip_event_options = _tinyWRAP.tsip_event_options
+tsip_event_publish = _tinyWRAP.tsip_event_publish
+tsip_event_register = _tinyWRAP.tsip_event_register
+tsip_event_subscribe = _tinyWRAP.tsip_event_subscribe
+tsip_event_dialog = _tinyWRAP.tsip_event_dialog
+tsip_event_code_dialog_transport_error = _tinyWRAP.tsip_event_code_dialog_transport_error
+tsip_event_code_dialog_global_error = _tinyWRAP.tsip_event_code_dialog_global_error
+tsip_event_code_dialog_message_error = _tinyWRAP.tsip_event_code_dialog_message_error
+tsip_event_code_dialog_request_incoming = _tinyWRAP.tsip_event_code_dialog_request_incoming
+tsip_event_code_dialog_request_outgoing = _tinyWRAP.tsip_event_code_dialog_request_outgoing
+tsip_event_code_dialog_request_cancelled = _tinyWRAP.tsip_event_code_dialog_request_cancelled
+tsip_event_code_dialog_request_sent = _tinyWRAP.tsip_event_code_dialog_request_sent
+tsip_event_code_dialog_connecting = _tinyWRAP.tsip_event_code_dialog_connecting
+tsip_event_code_dialog_connected = _tinyWRAP.tsip_event_code_dialog_connected
+tsip_event_code_dialog_terminating = _tinyWRAP.tsip_event_code_dialog_terminating
+tsip_event_code_dialog_terminated = _tinyWRAP.tsip_event_code_dialog_terminated
+tsip_event_code_stack_starting = _tinyWRAP.tsip_event_code_stack_starting
+tsip_event_code_stack_started = _tinyWRAP.tsip_event_code_stack_started
+tsip_event_code_stack_stopping = _tinyWRAP.tsip_event_code_stack_stopping
+tsip_event_code_stack_stopped = _tinyWRAP.tsip_event_code_stack_stopped
+tsip_event_code_stack_failed_to_start = _tinyWRAP.tsip_event_code_stack_failed_to_start
+tsip_event_code_stack_failed_to_stop = _tinyWRAP.tsip_event_code_stack_failed_to_stop
+tsip_event_code_stack_disconnected = _tinyWRAP.tsip_event_code_stack_disconnected
+tsip_i_newreg = _tinyWRAP.tsip_i_newreg
+tsip_i_register = _tinyWRAP.tsip_i_register
+tsip_ao_register = _tinyWRAP.tsip_ao_register
+tsip_i_unregister = _tinyWRAP.tsip_i_unregister
+tsip_ao_unregister = _tinyWRAP.tsip_ao_unregister
+tsip_i_subscribe = _tinyWRAP.tsip_i_subscribe
+tsip_ao_subscribe = _tinyWRAP.tsip_ao_subscribe
+tsip_i_unsubscribe = _tinyWRAP.tsip_i_unsubscribe
+tsip_ao_unsubscribe = _tinyWRAP.tsip_ao_unsubscribe
+tsip_i_notify = _tinyWRAP.tsip_i_notify
+tsip_ao_notify = _tinyWRAP.tsip_ao_notify
+tsip_i_publish = _tinyWRAP.tsip_i_publish
+tsip_ao_publish = _tinyWRAP.tsip_ao_publish
+tsip_i_unpublish = _tinyWRAP.tsip_i_unpublish
+tsip_ao_unpublish = _tinyWRAP.tsip_ao_unpublish
+tsip_i_message = _tinyWRAP.tsip_i_message
+tsip_ao_message = _tinyWRAP.tsip_ao_message
+tsip_i_info = _tinyWRAP.tsip_i_info
+tsip_ao_info = _tinyWRAP.tsip_ao_info
+tsip_i_options = _tinyWRAP.tsip_i_options
+tsip_ao_options = _tinyWRAP.tsip_ao_options
+tsip_i_newcall = _tinyWRAP.tsip_i_newcall
+tsip_i_request = _tinyWRAP.tsip_i_request
+tsip_ao_request = _tinyWRAP.tsip_ao_request
+tsip_o_ect_trying = _tinyWRAP.tsip_o_ect_trying
+tsip_o_ect_accepted = _tinyWRAP.tsip_o_ect_accepted
+tsip_o_ect_completed = _tinyWRAP.tsip_o_ect_completed
+tsip_o_ect_failed = _tinyWRAP.tsip_o_ect_failed
+tsip_o_ect_notify = _tinyWRAP.tsip_o_ect_notify
+tsip_i_ect_requested = _tinyWRAP.tsip_i_ect_requested
+tsip_i_ect_newcall = _tinyWRAP.tsip_i_ect_newcall
+tsip_i_ect_completed = _tinyWRAP.tsip_i_ect_completed
+tsip_i_ect_failed = _tinyWRAP.tsip_i_ect_failed
+tsip_i_ect_notify = _tinyWRAP.tsip_i_ect_notify
+tsip_m_early_media = _tinyWRAP.tsip_m_early_media
+tsip_m_updating = _tinyWRAP.tsip_m_updating
+tsip_m_updated = _tinyWRAP.tsip_m_updated
+tsip_m_local_hold_ok = _tinyWRAP.tsip_m_local_hold_ok
+tsip_m_local_hold_nok = _tinyWRAP.tsip_m_local_hold_nok
+tsip_m_local_resume_ok = _tinyWRAP.tsip_m_local_resume_ok
+tsip_m_local_resume_nok = _tinyWRAP.tsip_m_local_resume_nok
+tsip_m_remote_hold = _tinyWRAP.tsip_m_remote_hold
+tsip_m_remote_resume = _tinyWRAP.tsip_m_remote_resume
+tmedia_qos_stype_none = _tinyWRAP.tmedia_qos_stype_none
+tmedia_qos_stype_segmented = _tinyWRAP.tmedia_qos_stype_segmented
+tmedia_qos_stype_e2e = _tinyWRAP.tmedia_qos_stype_e2e
+tmedia_qos_strength_none = _tinyWRAP.tmedia_qos_strength_none
+tmedia_qos_strength_failure = _tinyWRAP.tmedia_qos_strength_failure
+tmedia_qos_strength_unknown = _tinyWRAP.tmedia_qos_strength_unknown
+tmedia_qos_strength_optional = _tinyWRAP.tmedia_qos_strength_optional
+tmedia_qos_strength_mandatory = _tinyWRAP.tmedia_qos_strength_mandatory
+tmedia_chroma_none = _tinyWRAP.tmedia_chroma_none
+tmedia_chroma_rgb24 = _tinyWRAP.tmedia_chroma_rgb24
+tmedia_chroma_bgr24 = _tinyWRAP.tmedia_chroma_bgr24
+tmedia_chroma_rgb32 = _tinyWRAP.tmedia_chroma_rgb32
+tmedia_chroma_rgb565le = _tinyWRAP.tmedia_chroma_rgb565le
+tmedia_chroma_rgb565be = _tinyWRAP.tmedia_chroma_rgb565be
+tmedia_chroma_nv12 = _tinyWRAP.tmedia_chroma_nv12
+tmedia_chroma_nv21 = _tinyWRAP.tmedia_chroma_nv21
+tmedia_chroma_yuv422p = _tinyWRAP.tmedia_chroma_yuv422p
+tmedia_chroma_uyvy422 = _tinyWRAP.tmedia_chroma_uyvy422
+tmedia_chroma_yuv420p = _tinyWRAP.tmedia_chroma_yuv420p
+tmedia_chroma_mjpeg = _tinyWRAP.tmedia_chroma_mjpeg
+tmedia_chroma_yuyv422 = _tinyWRAP.tmedia_chroma_yuyv422
+tmedia_mode_none = _tinyWRAP.tmedia_mode_none
+tmedia_mode_optional = _tinyWRAP.tmedia_mode_optional
+tmedia_mode_mandatory = _tinyWRAP.tmedia_mode_mandatory
+tmedia_srtp_mode_none = _tinyWRAP.tmedia_srtp_mode_none
+tmedia_srtp_mode_optional = _tinyWRAP.tmedia_srtp_mode_optional
+tmedia_srtp_mode_mandatory = _tinyWRAP.tmedia_srtp_mode_mandatory
+tmedia_srtp_type_none = _tinyWRAP.tmedia_srtp_type_none
+tmedia_srtp_type_sdes = _tinyWRAP.tmedia_srtp_type_sdes
+tmedia_srtp_type_dtls = _tinyWRAP.tmedia_srtp_type_dtls
+tmedia_srtp_type_sdes_dtls = _tinyWRAP.tmedia_srtp_type_sdes_dtls
+tmedia_t140_data_type_utf8 = _tinyWRAP.tmedia_t140_data_type_utf8
+tmedia_t140_data_type_zero_width_no_break_space = _tinyWRAP.tmedia_t140_data_type_zero_width_no_break_space
+tmedia_t140_data_type_backspace = _tinyWRAP.tmedia_t140_data_type_backspace
+tmedia_t140_data_type_esc = _tinyWRAP.tmedia_t140_data_type_esc
+tmedia_t140_data_type_cr = _tinyWRAP.tmedia_t140_data_type_cr
+tmedia_t140_data_type_lf = _tinyWRAP.tmedia_t140_data_type_lf
+tmedia_t140_data_type_cr_lf = _tinyWRAP.tmedia_t140_data_type_cr_lf
+tmedia_t140_data_type_interrupt2 = _tinyWRAP.tmedia_t140_data_type_interrupt2
+tmedia_t140_data_type_bell = _tinyWRAP.tmedia_t140_data_type_bell
+tmedia_t140_data_type_sos = _tinyWRAP.tmedia_t140_data_type_sos
+tmedia_t140_data_type_string_term = _tinyWRAP.tmedia_t140_data_type_string_term
+tmedia_t140_data_type_graphic_start = _tinyWRAP.tmedia_t140_data_type_graphic_start
+tmedia_t140_data_type_graphic_end = _tinyWRAP.tmedia_t140_data_type_graphic_end
+tmedia_t140_data_type_loss_char_char = _tinyWRAP.tmedia_t140_data_type_loss_char_char
+tmedia_t140_data_type_loss_utf8 = _tinyWRAP.tmedia_t140_data_type_loss_utf8
+tmedia_profile_default = _tinyWRAP.tmedia_profile_default
+tmedia_profile_rtcweb = _tinyWRAP.tmedia_profile_rtcweb
+tmedia_bl_low = _tinyWRAP.tmedia_bl_low
+tmedia_bl_medium = _tinyWRAP.tmedia_bl_medium
+tmedia_bl_hight = _tinyWRAP.tmedia_bl_hight
+tmedia_bl_unrestricted = _tinyWRAP.tmedia_bl_unrestricted
+tmedia_pref_video_size_sqcif = _tinyWRAP.tmedia_pref_video_size_sqcif
+tmedia_pref_video_size_qcif = _tinyWRAP.tmedia_pref_video_size_qcif
+tmedia_pref_video_size_qvga = _tinyWRAP.tmedia_pref_video_size_qvga
+tmedia_pref_video_size_cif = _tinyWRAP.tmedia_pref_video_size_cif
+tmedia_pref_video_size_hvga = _tinyWRAP.tmedia_pref_video_size_hvga
+tmedia_pref_video_size_vga = _tinyWRAP.tmedia_pref_video_size_vga
+tmedia_pref_video_size_4cif = _tinyWRAP.tmedia_pref_video_size_4cif
+tmedia_pref_video_size_wvga = _tinyWRAP.tmedia_pref_video_size_wvga
+tmedia_pref_video_size_svga = _tinyWRAP.tmedia_pref_video_size_svga
+tmedia_pref_video_size_480p = _tinyWRAP.tmedia_pref_video_size_480p
+tmedia_pref_video_size_xga = _tinyWRAP.tmedia_pref_video_size_xga
+tmedia_pref_video_size_720p = _tinyWRAP.tmedia_pref_video_size_720p
+tmedia_pref_video_size_16cif = _tinyWRAP.tmedia_pref_video_size_16cif
+tmedia_pref_video_size_1080p = _tinyWRAP.tmedia_pref_video_size_1080p
+tmedia_pref_video_size_2160p = _tinyWRAP.tmedia_pref_video_size_2160p
+tmedia_codec_id_none = _tinyWRAP.tmedia_codec_id_none
+tmedia_codec_id_amr_nb_oa = _tinyWRAP.tmedia_codec_id_amr_nb_oa
+tmedia_codec_id_amr_nb_be = _tinyWRAP.tmedia_codec_id_amr_nb_be
+tmedia_codec_id_amr_wb_oa = _tinyWRAP.tmedia_codec_id_amr_wb_oa
+tmedia_codec_id_amr_wb_be = _tinyWRAP.tmedia_codec_id_amr_wb_be
+tmedia_codec_id_gsm = _tinyWRAP.tmedia_codec_id_gsm
+tmedia_codec_id_pcma = _tinyWRAP.tmedia_codec_id_pcma
+tmedia_codec_id_pcmu = _tinyWRAP.tmedia_codec_id_pcmu
+tmedia_codec_id_ilbc = _tinyWRAP.tmedia_codec_id_ilbc
+tmedia_codec_id_speex_nb = _tinyWRAP.tmedia_codec_id_speex_nb
+tmedia_codec_id_speex_wb = _tinyWRAP.tmedia_codec_id_speex_wb
+tmedia_codec_id_speex_uwb = _tinyWRAP.tmedia_codec_id_speex_uwb
+tmedia_codec_id_bv16 = _tinyWRAP.tmedia_codec_id_bv16
+tmedia_codec_id_bv32 = _tinyWRAP.tmedia_codec_id_bv32
+tmedia_codec_id_opus = _tinyWRAP.tmedia_codec_id_opus
+tmedia_codec_id_g729ab = _tinyWRAP.tmedia_codec_id_g729ab
+tmedia_codec_id_g722 = _tinyWRAP.tmedia_codec_id_g722
+tmedia_codec_id_h261 = _tinyWRAP.tmedia_codec_id_h261
+tmedia_codec_id_h263 = _tinyWRAP.tmedia_codec_id_h263
+tmedia_codec_id_h263p = _tinyWRAP.tmedia_codec_id_h263p
+tmedia_codec_id_h263pp = _tinyWRAP.tmedia_codec_id_h263pp
+tmedia_codec_id_h264_bp = _tinyWRAP.tmedia_codec_id_h264_bp
+tmedia_codec_id_h264_mp = _tinyWRAP.tmedia_codec_id_h264_mp
+tmedia_codec_id_h264_hp = _tinyWRAP.tmedia_codec_id_h264_hp
+tmedia_codec_id_h264_bp10 = _tinyWRAP.tmedia_codec_id_h264_bp10
+tmedia_codec_id_h264_bp20 = _tinyWRAP.tmedia_codec_id_h264_bp20
+tmedia_codec_id_h264_bp30 = _tinyWRAP.tmedia_codec_id_h264_bp30
+tmedia_codec_id_h264_svc = _tinyWRAP.tmedia_codec_id_h264_svc
+tmedia_codec_id_theora = _tinyWRAP.tmedia_codec_id_theora
+tmedia_codec_id_mp4ves_es = _tinyWRAP.tmedia_codec_id_mp4ves_es
+tmedia_codec_id_vp8 = _tinyWRAP.tmedia_codec_id_vp8
+tmedia_codec_id_t140 = _tinyWRAP.tmedia_codec_id_t140
+tmedia_codec_id_red = _tinyWRAP.tmedia_codec_id_red
+tdav_codec_id_none = _tinyWRAP.tdav_codec_id_none
+tdav_codec_id_amr_nb_oa = _tinyWRAP.tdav_codec_id_amr_nb_oa
+tdav_codec_id_amr_nb_be = _tinyWRAP.tdav_codec_id_amr_nb_be
+tdav_codec_id_amr_wb_oa = _tinyWRAP.tdav_codec_id_amr_wb_oa
+tdav_codec_id_amr_wb_be = _tinyWRAP.tdav_codec_id_amr_wb_be
+tdav_codec_id_gsm = _tinyWRAP.tdav_codec_id_gsm
+tdav_codec_id_pcma = _tinyWRAP.tdav_codec_id_pcma
+tdav_codec_id_pcmu = _tinyWRAP.tdav_codec_id_pcmu
+tdav_codec_id_ilbc = _tinyWRAP.tdav_codec_id_ilbc
+tdav_codec_id_speex_nb = _tinyWRAP.tdav_codec_id_speex_nb
+tdav_codec_id_speex_wb = _tinyWRAP.tdav_codec_id_speex_wb
+tdav_codec_id_speex_uwb = _tinyWRAP.tdav_codec_id_speex_uwb
+tdav_codec_id_bv16 = _tinyWRAP.tdav_codec_id_bv16
+tdav_codec_id_bv32 = _tinyWRAP.tdav_codec_id_bv32
+tdav_codec_id_opus = _tinyWRAP.tdav_codec_id_opus
+tdav_codec_id_g729ab = _tinyWRAP.tdav_codec_id_g729ab
+tdav_codec_id_g722 = _tinyWRAP.tdav_codec_id_g722
+tdav_codec_id_h261 = _tinyWRAP.tdav_codec_id_h261
+tdav_codec_id_h263 = _tinyWRAP.tdav_codec_id_h263
+tdav_codec_id_h263p = _tinyWRAP.tdav_codec_id_h263p
+tdav_codec_id_h263pp = _tinyWRAP.tdav_codec_id_h263pp
+tdav_codec_id_h264_bp = _tinyWRAP.tdav_codec_id_h264_bp
+tdav_codec_id_h264_mp = _tinyWRAP.tdav_codec_id_h264_mp
+tdav_codec_id_h264_hp = _tinyWRAP.tdav_codec_id_h264_hp
+tdav_codec_id_h264_bp10 = _tinyWRAP.tdav_codec_id_h264_bp10
+tdav_codec_id_h264_bp20 = _tinyWRAP.tdav_codec_id_h264_bp20
+tdav_codec_id_h264_bp30 = _tinyWRAP.tdav_codec_id_h264_bp30
+tdav_codec_id_h264_svc = _tinyWRAP.tdav_codec_id_h264_svc
+tdav_codec_id_theora = _tinyWRAP.tdav_codec_id_theora
+tdav_codec_id_mp4ves_es = _tinyWRAP.tdav_codec_id_mp4ves_es
+tdav_codec_id_vp8 = _tinyWRAP.tdav_codec_id_vp8
+tdav_codec_id_t140 = _tinyWRAP.tdav_codec_id_t140
+tdav_codec_id_red = _tinyWRAP.tdav_codec_id_red
+class XcapSelector(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, XcapSelector, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, XcapSelector, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_XcapSelector(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_XcapSelector
+ __del__ = lambda self : None;
+ def setAUID(self, *args): return _tinyWRAP.XcapSelector_setAUID(self, *args)
+ def setName(self, *args): return _tinyWRAP.XcapSelector_setName(self, *args)
+ def setAttribute(self, *args): return _tinyWRAP.XcapSelector_setAttribute(self, *args)
+ def setPos(self, *args): return _tinyWRAP.XcapSelector_setPos(self, *args)
+ def setPosAttribute(self, *args): return _tinyWRAP.XcapSelector_setPosAttribute(self, *args)
+ def setNamespace(self, *args): return _tinyWRAP.XcapSelector_setNamespace(self, *args)
+ def getString(self): return _tinyWRAP.XcapSelector_getString(self)
+ def reset(self): return _tinyWRAP.XcapSelector_reset(self)
+XcapSelector_swigregister = _tinyWRAP.XcapSelector_swigregister
+XcapSelector_swigregister(XcapSelector)
+
+class XcapMessage(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, XcapMessage, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, XcapMessage, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_XcapMessage()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_XcapMessage
+ __del__ = lambda self : None;
+ def getCode(self): return _tinyWRAP.XcapMessage_getCode(self)
+ def getPhrase(self): return _tinyWRAP.XcapMessage_getPhrase(self)
+ def getXcapHeaderValue(self, *args): return _tinyWRAP.XcapMessage_getXcapHeaderValue(self, *args)
+ def getXcapHeaderParamValue(self, *args): return _tinyWRAP.XcapMessage_getXcapHeaderParamValue(self, *args)
+ def getXcapContentLength(self): return _tinyWRAP.XcapMessage_getXcapContentLength(self)
+ def getXcapContent(self, *args): return _tinyWRAP.XcapMessage_getXcapContent(self, *args)
+XcapMessage_swigregister = _tinyWRAP.XcapMessage_swigregister
+XcapMessage_swigregister(XcapMessage)
+
+class XcapEvent(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, XcapEvent, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, XcapEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_XcapEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.XcapEvent_getType(self)
+ def getXcapMessage(self): return _tinyWRAP.XcapEvent_getXcapMessage(self)
+XcapEvent_swigregister = _tinyWRAP.XcapEvent_swigregister
+XcapEvent_swigregister(XcapEvent)
+
+class XcapCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, XcapCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, XcapCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == XcapCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_XcapCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_XcapCallback
+ __del__ = lambda self : None;
+ def onEvent(self, *args): return _tinyWRAP.XcapCallback_onEvent(self, *args)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_XcapCallback(self)
+ return weakref_proxy(self)
+XcapCallback_swigregister = _tinyWRAP.XcapCallback_swigregister
+XcapCallback_swigregister(XcapCallback)
+
+class XcapStack(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, XcapStack, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, XcapStack, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ this = _tinyWRAP.new_XcapStack(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_XcapStack
+ __del__ = lambda self : None;
+ def registerAUID(self, *args): return _tinyWRAP.XcapStack_registerAUID(self, *args)
+ def start(self): return _tinyWRAP.XcapStack_start(self)
+ def setCredentials(self, *args): return _tinyWRAP.XcapStack_setCredentials(self, *args)
+ def setXcapRoot(self, *args): return _tinyWRAP.XcapStack_setXcapRoot(self, *args)
+ def setLocalIP(self, *args): return _tinyWRAP.XcapStack_setLocalIP(self, *args)
+ def setLocalPort(self, *args): return _tinyWRAP.XcapStack_setLocalPort(self, *args)
+ def addHeader(self, *args): return _tinyWRAP.XcapStack_addHeader(self, *args)
+ def removeHeader(self, *args): return _tinyWRAP.XcapStack_removeHeader(self, *args)
+ def setTimeout(self, *args): return _tinyWRAP.XcapStack_setTimeout(self, *args)
+ def getDocument(self, *args): return _tinyWRAP.XcapStack_getDocument(self, *args)
+ def getElement(self, *args): return _tinyWRAP.XcapStack_getElement(self, *args)
+ def getAttribute(self, *args): return _tinyWRAP.XcapStack_getAttribute(self, *args)
+ def deleteDocument(self, *args): return _tinyWRAP.XcapStack_deleteDocument(self, *args)
+ def deleteElement(self, *args): return _tinyWRAP.XcapStack_deleteElement(self, *args)
+ def deleteAttribute(self, *args): return _tinyWRAP.XcapStack_deleteAttribute(self, *args)
+ def putDocument(self, *args): return _tinyWRAP.XcapStack_putDocument(self, *args)
+ def putElement(self, *args): return _tinyWRAP.XcapStack_putElement(self, *args)
+ def putAttribute(self, *args): return _tinyWRAP.XcapStack_putAttribute(self, *args)
+ def stop(self): return _tinyWRAP.XcapStack_stop(self)
+XcapStack_swigregister = _tinyWRAP.XcapStack_swigregister
+XcapStack_swigregister(XcapStack)
+
+thttp_event_dialog_started = _tinyWRAP.thttp_event_dialog_started
+thttp_event_message = _tinyWRAP.thttp_event_message
+thttp_event_auth_failed = _tinyWRAP.thttp_event_auth_failed
+thttp_event_closed = _tinyWRAP.thttp_event_closed
+thttp_event_transport_error = _tinyWRAP.thttp_event_transport_error
+thttp_event_dialog_terminated = _tinyWRAP.thttp_event_dialog_terminated
+twrap_rpmessage_type_sms_none = _tinyWRAP.twrap_rpmessage_type_sms_none
+twrap_rpmessage_type_sms_submit = _tinyWRAP.twrap_rpmessage_type_sms_submit
+twrap_rpmessage_type_sms_deliver = _tinyWRAP.twrap_rpmessage_type_sms_deliver
+twrap_rpmessage_type_sms_ack = _tinyWRAP.twrap_rpmessage_type_sms_ack
+twrap_rpmessage_type_sms_error = _tinyWRAP.twrap_rpmessage_type_sms_error
+twrap_sms_type_none = _tinyWRAP.twrap_sms_type_none
+twrap_sms_type_rpdata = _tinyWRAP.twrap_sms_type_rpdata
+twrap_sms_type_smma = _tinyWRAP.twrap_sms_type_smma
+twrap_sms_type_ack = _tinyWRAP.twrap_sms_type_ack
+twrap_sms_type_error = _tinyWRAP.twrap_sms_type_error
+class RPMessage(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, RPMessage, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, RPMessage, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_RPMessage()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_RPMessage
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.RPMessage_getType(self)
+ def getPayloadLength(self): return _tinyWRAP.RPMessage_getPayloadLength(self)
+ def getPayload(self, *args): return _tinyWRAP.RPMessage_getPayload(self, *args)
+RPMessage_swigregister = _tinyWRAP.RPMessage_swigregister
+RPMessage_swigregister(RPMessage)
+
+class SMSData(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SMSData, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SMSData, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_SMSData()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_SMSData
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.SMSData_getType(self)
+ def getMR(self): return _tinyWRAP.SMSData_getMR(self)
+ def getPayloadLength(self): return _tinyWRAP.SMSData_getPayloadLength(self)
+ def getPayload(self, *args): return _tinyWRAP.SMSData_getPayload(self, *args)
+ def getOA(self): return _tinyWRAP.SMSData_getOA(self)
+ def getDA(self): return _tinyWRAP.SMSData_getDA(self)
+SMSData_swigregister = _tinyWRAP.SMSData_swigregister
+SMSData_swigregister(SMSData)
+
+class SMSEncoder(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SMSEncoder, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SMSEncoder, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_getmethods__["encodeSubmit"] = lambda x: _tinyWRAP.SMSEncoder_encodeSubmit
+ if _newclass:encodeSubmit = staticmethod(_tinyWRAP.SMSEncoder_encodeSubmit)
+ __swig_getmethods__["encodeDeliver"] = lambda x: _tinyWRAP.SMSEncoder_encodeDeliver
+ if _newclass:encodeDeliver = staticmethod(_tinyWRAP.SMSEncoder_encodeDeliver)
+ __swig_getmethods__["encodeACK"] = lambda x: _tinyWRAP.SMSEncoder_encodeACK
+ if _newclass:encodeACK = staticmethod(_tinyWRAP.SMSEncoder_encodeACK)
+ __swig_getmethods__["encodeError"] = lambda x: _tinyWRAP.SMSEncoder_encodeError
+ if _newclass:encodeError = staticmethod(_tinyWRAP.SMSEncoder_encodeError)
+ __swig_getmethods__["decode"] = lambda x: _tinyWRAP.SMSEncoder_decode
+ if _newclass:decode = staticmethod(_tinyWRAP.SMSEncoder_decode)
+ __swig_destroy__ = _tinyWRAP.delete_SMSEncoder
+ __del__ = lambda self : None;
+SMSEncoder_swigregister = _tinyWRAP.SMSEncoder_swigregister
+SMSEncoder_swigregister(SMSEncoder)
+
+def SMSEncoder_encodeSubmit(*args):
+ return _tinyWRAP.SMSEncoder_encodeSubmit(*args)
+SMSEncoder_encodeSubmit = _tinyWRAP.SMSEncoder_encodeSubmit
+
+def SMSEncoder_encodeDeliver(*args):
+ return _tinyWRAP.SMSEncoder_encodeDeliver(*args)
+SMSEncoder_encodeDeliver = _tinyWRAP.SMSEncoder_encodeDeliver
+
+def SMSEncoder_encodeACK(*args):
+ return _tinyWRAP.SMSEncoder_encodeACK(*args)
+SMSEncoder_encodeACK = _tinyWRAP.SMSEncoder_encodeACK
+
+def SMSEncoder_encodeError(*args):
+ return _tinyWRAP.SMSEncoder_encodeError(*args)
+SMSEncoder_encodeError = _tinyWRAP.SMSEncoder_encodeError
+
+def SMSEncoder_decode(*args):
+ return _tinyWRAP.SMSEncoder_decode(*args)
+SMSEncoder_decode = _tinyWRAP.SMSEncoder_decode
+
+class MsrpMessage(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MsrpMessage, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, MsrpMessage, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ this = _tinyWRAP.new_MsrpMessage()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_MsrpMessage
+ __del__ = lambda self : None;
+ def isRequest(self): return _tinyWRAP.MsrpMessage_isRequest(self)
+ def getCode(self): return _tinyWRAP.MsrpMessage_getCode(self)
+ def getPhrase(self): return _tinyWRAP.MsrpMessage_getPhrase(self)
+ def getRequestType(self): return _tinyWRAP.MsrpMessage_getRequestType(self)
+ def getByteRange(self): return _tinyWRAP.MsrpMessage_getByteRange(self)
+ def isLastChunck(self): return _tinyWRAP.MsrpMessage_isLastChunck(self)
+ def isFirstChunck(self): return _tinyWRAP.MsrpMessage_isFirstChunck(self)
+ def isSuccessReport(self): return _tinyWRAP.MsrpMessage_isSuccessReport(self)
+ def getMsrpHeaderValue(self, *args): return _tinyWRAP.MsrpMessage_getMsrpHeaderValue(self, *args)
+ def getMsrpHeaderParamValue(self, *args): return _tinyWRAP.MsrpMessage_getMsrpHeaderParamValue(self, *args)
+ def getMsrpContentLength(self): return _tinyWRAP.MsrpMessage_getMsrpContentLength(self)
+ def getMsrpContent(self, *args): return _tinyWRAP.MsrpMessage_getMsrpContent(self, *args)
+MsrpMessage_swigregister = _tinyWRAP.MsrpMessage_swigregister
+MsrpMessage_swigregister(MsrpMessage)
+
+class MsrpEvent(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MsrpEvent, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, MsrpEvent, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _tinyWRAP.delete_MsrpEvent
+ __del__ = lambda self : None;
+ def getType(self): return _tinyWRAP.MsrpEvent_getType(self)
+ def getSipSession(self): return _tinyWRAP.MsrpEvent_getSipSession(self)
+ def getMessage(self): return _tinyWRAP.MsrpEvent_getMessage(self)
+MsrpEvent_swigregister = _tinyWRAP.MsrpEvent_swigregister
+MsrpEvent_swigregister(MsrpEvent)
+
+class MsrpCallback(_object):
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, MsrpCallback, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, MsrpCallback, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ if self.__class__ == MsrpCallback:
+ _self = None
+ else:
+ _self = self
+ this = _tinyWRAP.new_MsrpCallback(_self, )
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _tinyWRAP.delete_MsrpCallback
+ __del__ = lambda self : None;
+ def OnEvent(self, *args): return _tinyWRAP.MsrpCallback_OnEvent(self, *args)
+ def __disown__(self):
+ self.this.disown()
+ _tinyWRAP.disown_MsrpCallback(self)
+ return weakref_proxy(self)
+MsrpCallback_swigregister = _tinyWRAP.MsrpCallback_swigregister
+MsrpCallback_swigregister(MsrpCallback)
+
+tmsrp_NONE = _tinyWRAP.tmsrp_NONE
+tmsrp_SEND = _tinyWRAP.tmsrp_SEND
+tmsrp_REPORT = _tinyWRAP.tmsrp_REPORT
+tmsrp_AUTH = _tinyWRAP.tmsrp_AUTH
+tmsrp_event_type_none = _tinyWRAP.tmsrp_event_type_none
+tmsrp_event_type_connected = _tinyWRAP.tmsrp_event_type_connected
+tmsrp_event_type_disconnected = _tinyWRAP.tmsrp_event_type_disconnected
+tmsrp_event_type_message = _tinyWRAP.tmsrp_event_type_message
+# This file is compatible with both classic and new-style classes.
+
+
OpenPOWER on IntegriCloud