/* * Copyright (C) 2020, University of the Basque Country (UPV/EHU) * Contact for licensing options: * * The original file was part of Open Source Doubango Framework * Copyright (C) 2010-2011 Mamadou Diop. * Copyright (C) 2012 Doubango Telecom * * This file is part of Open Source Doubango Framework. * * DOUBANGO is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * DOUBANGO is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DOUBANGO. * */ #ifndef TINYWRAP_MEDIA_SESSIONMGR_H #define TINYWRAP_MEDIA_SESSIONMGR_H #include "tinyWRAP_config.h" #include "tinymedia.h" #include "Common.h" class ProxyPlugin; class TINYWRAP_API Codec { public: #if !defined(SWIG) Codec(const struct tmedia_codec_s* pWrappedCodec); #endif virtual ~Codec(); public: #if !defined(SWIG) const struct tmedia_codec_s* getWrappedCodec(){ return m_pWrappedCodec; } inline bool isOpened(){ return (m_pWrappedCodec && (m_pWrappedCodec->opened == tsk_true)); } #endif twrap_media_type_t getMediaType(); const char* getName(); const char* getDescription(); const char* getNegFormat(); int getAudioSamplingRate(); int getAudioChannels(); int getAudioPTime(); private: struct tmedia_codec_s* m_pWrappedCodec; }; class TINYWRAP_API MediaSessionMgr { public: #if !defined(SWIG) MediaSessionMgr(tmedia_session_mgr_t* pWrappedMgr); #endif virtual ~MediaSessionMgr(); public: bool sessionSetInt32(twrap_media_type_t media, const char* key, int32_t value); int32_t sessionGetInt32(twrap_media_type_t media, const char* key); bool consumerSetInt32(twrap_media_type_t media, const char* key, int32_t value); bool consumerSetInt64(twrap_media_type_t media, const char* key, int64_t value); bool producerSetInt32(twrap_media_type_t media, const char* key, int32_t value); bool producerSetInt64(twrap_media_type_t media, const char* key, int64_t value); Codec* producerGetCodec(twrap_media_type_t media); int32_t sessionHold(twrap_media_type_t media); int32_t sessionResume(twrap_media_type_t media); #if !defined(SWIG) const ProxyPlugin* findProxyPlugin(twrap_media_type_t media, bool consumer)const; #endif const ProxyPlugin* findProxyPluginConsumer(twrap_media_type_t media)const{ return this->findProxyPlugin(media, true); } const ProxyPlugin* findProxyPluginProducer(twrap_media_type_t media)const{ return this->findProxyPlugin(media, false); } static unsigned int registerAudioPluginFromFile(const char* path); static unsigned int registerAudioPluginOpenSLES(); uint64_t getSessionId(twrap_media_type_t media)const; #if !defined(SWIG) inline const tmedia_session_mgr_t* getWrappedMgr()const { return m_pWrappedMgr; } #endif // Defaults static bool defaultsSetProfile(tmedia_profile_t profile); static tmedia_profile_t defaultsGetProfile(); static bool defaultsSetBandwidthLevel(tmedia_bandwidth_level_t bl); // @deprecated static tmedia_bandwidth_level_t defaultsGetBandwidthLevel(); // @deprecated static bool defaultsSetCongestionCtrlEnabled(bool enabled); static bool defaultsSetVideoMotionRank(int32_t video_motion_rank); static bool defaultsSetVideoFps(int32_t video_fps); static bool defaultsSetBandwidthVideoUploadMax(int32_t bw_video_up_max_kbps); static bool defaultsSetBandwidthVideoDownloadMax(int32_t bw_video_down_max_kbps); static bool defaultsSetPrefVideoSize(tmedia_pref_video_size_t pref_video_size); static bool defaultsSetJbMargin(uint32_t jb_margin_ms); static bool defaultsSetJbMaxLateRate(uint32_t jb_late_rate_percent); static bool defaultsSetEchoTail(uint32_t echo_tail); static uint32_t defaultsGetEchoTail(); static bool defaultsSetEchoSkew(uint32_t echo_skew); static bool defaultsSetEchoSuppEnabled(bool echo_supp_enabled); static bool defaultsGetEchoSuppEnabled(); static bool defaultsSetAgcEnabled(bool agc_enabled); static bool defaultsGetAgcEnabled(); static bool defaultsSetAgcLevel(float agc_level); static float defaultsGetAgcLevel(); static bool defaultsSetVadEnabled(bool vad_enabled); static bool defaultsGetGetVadEnabled(); static bool defaultsSetNoiseSuppEnabled(bool noise_supp_enabled); static bool defaultsGetNoiseSuppEnabled(); static bool defaultsSetNoiseSuppLevel(int32_t noise_supp_level); static int32_t defaultsGetNoiseSuppLevel(); static bool defaultsSet100relEnabled(bool _100rel_enabled); static bool defaultsGet100relEnabled(); static bool defaultsSetScreenSize(int32_t sx, int32_t sy); static bool defaultsSetAudioGain(int32_t producer_gain, int32_t consumer_gain); static bool defaultsSetAudioPtime(int32_t ptime); static bool defaultsSetAudioChannels(int32_t channel_playback, int32_t channel_record); static bool defaultsSetRtpPortRange(uint16_t range_start, uint16_t range_stop); static bool defaultsSetRtpSymetricEnabled(bool enabled); static bool defaultsSetMediaType(twrap_media_type_t media_type); static bool defaultsSetVolume(int32_t volume); static int32_t defaultsGetVolume(); static bool defaultsSetInviteSessionTimers(int32_t timeout, const char* refresher); static bool defaultsSetSRtpMode(tmedia_srtp_mode_t mode); static tmedia_srtp_mode_t defaultsGetSRtpMode(); static bool defaultsSetSRtpType(tmedia_srtp_type_t srtp_type); static tmedia_srtp_type_t defaultsGetSRtpType(); static bool defaultsSetRtcpEnabled(bool enabled); static bool defaultsGetRtcpEnabled(); static bool defaultsSetRtcpMuxEnabled(bool enabled); static bool defaultsGetRtcpMuxEnabled(); static bool defaultsSetStunEnabled(bool stun_enabled); static bool defaultsSetIceStunEnabled(bool icestun_enabled); static bool defaultsSetIceTurnEnabled(bool iceturn_enabled); static bool defaultsSetStunServer(const char* server_ip, uint16_t server_port); static bool defaultsSetStunCred(const char* username, const char* password); static bool defaultsSetIceEnabled(bool ice_enabled); static bool defaultsSetByPassEncoding(bool enabled); static bool defaultsGetByPassEncoding(); static bool defaultsSetByPassDecoding(bool enabled); static bool defaultsGetByPassDecoding(); static bool defaultsSetVideoJbEnabled(bool enabled); static bool defaultsGetVideoJbEnabled(); static bool defaultsSetVideoZeroArtifactsEnabled(bool enabled); static bool defaultsGetVideoZeroArtifactsEnabled(); static bool defaultsSetRtpBuffSize(unsigned buffSize); static unsigned defaultsGetRtpBuffSize(); static bool defaultsSetAvpfTail(unsigned tail_min, unsigned tail_max); static bool defaultsSetAvpfMode(enum tmedia_mode_e mode); static bool defaultsSetOpusMaxCaptureRate(uint32_t opus_maxcapturerate); static bool defaultsSetOpusMaxPlaybackRate(uint32_t opus_maxplaybackrate); static bool defaultsSetMaxFds(int32_t max_fds); static bool defaultsSetPoCQoE(tmedia_poc_qoe_profile_t profile, tmedia_poc_qoe_profile_strength_t strength); private: tmedia_session_mgr_t* m_pWrappedMgr; }; #endif /* TINYWRAP_MEDIA_SESSIONMGR_H */