Home | History | Annotate | Download | only in media
      1 /*
      2  * libjingle
      3  * Copyright 2004 Google Inc.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions are met:
      7  *
      8  *  1. Redistributions of source code must retain the above copyright notice,
      9  *     this list of conditions and the following disclaimer.
     10  *  2. Redistributions in binary form must reproduce the above copyright notice,
     11  *     this list of conditions and the following disclaimer in the documentation
     12  *     and/or other materials provided with the distribution.
     13  *  3. The name of the author may not be used to endorse or promote products
     14  *     derived from this software without specific prior written permission.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
     19  * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  */
     27 
     28 #ifndef TALK_SESSION_MEDIA_CHANNELMANAGER_H_
     29 #define TALK_SESSION_MEDIA_CHANNELMANAGER_H_
     30 
     31 #include <string>
     32 #include <vector>
     33 
     34 #include "talk/base/criticalsection.h"
     35 #include "talk/base/sigslotrepeater.h"
     36 #include "talk/base/thread.h"
     37 #include "talk/media/base/capturemanager.h"
     38 #include "talk/media/base/mediaengine.h"
     39 #include "talk/p2p/base/session.h"
     40 #include "talk/session/media/voicechannel.h"
     41 
     42 namespace cricket {
     43 
     44 class Soundclip;
     45 class VideoProcessor;
     46 class VoiceChannel;
     47 class VoiceProcessor;
     48 
     49 // ChannelManager allows the MediaEngine to run on a separate thread, and takes
     50 // care of marshalling calls between threads. It also creates and keeps track of
     51 // voice and video channels; by doing so, it can temporarily pause all the
     52 // channels when a new audio or video device is chosen. The voice and video
     53 // channels are stored in separate vectors, to easily allow operations on just
     54 // voice or just video channels.
     55 // ChannelManager also allows the application to discover what devices it has
     56 // using device manager.
     57 class ChannelManager : public talk_base::MessageHandler,
     58                        public sigslot::has_slots<> {
     59  public:
     60 #if !defined(DISABLE_MEDIA_ENGINE_FACTORY)
     61   // Creates the channel manager, and specifies the worker thread to use.
     62   explicit ChannelManager(talk_base::Thread* worker);
     63 #endif
     64 
     65   // For testing purposes. Allows the media engine and data media
     66   // engine and dev manager to be mocks.  The ChannelManager takes
     67   // ownership of these objects.
     68   ChannelManager(MediaEngineInterface* me,
     69                  DataEngineInterface* dme,
     70                  DeviceManagerInterface* dm,
     71                  CaptureManager* cm,
     72                  talk_base::Thread* worker);
     73   // Same as above, but gives an easier default DataEngine.
     74   ChannelManager(MediaEngineInterface* me,
     75                  DeviceManagerInterface* dm,
     76                  talk_base::Thread* worker);
     77   ~ChannelManager();
     78 
     79   // Accessors for the worker thread, allowing it to be set after construction,
     80   // but before Init. set_worker_thread will return false if called after Init.
     81   talk_base::Thread* worker_thread() const { return worker_thread_; }
     82   bool set_worker_thread(talk_base::Thread* thread) {
     83     if (initialized_) return false;
     84     worker_thread_ = thread;
     85     return true;
     86   }
     87 
     88   // Gets capabilities. Can be called prior to starting the media engine.
     89   int GetCapabilities();
     90 
     91   // Retrieves the list of supported audio & video codec types.
     92   // Can be called before starting the media engine.
     93   void GetSupportedAudioCodecs(std::vector<AudioCodec>* codecs) const;
     94   void GetSupportedAudioRtpHeaderExtensions(RtpHeaderExtensions* ext) const;
     95   void GetSupportedVideoCodecs(std::vector<VideoCodec>* codecs) const;
     96   void GetSupportedVideoRtpHeaderExtensions(RtpHeaderExtensions* ext) const;
     97   void GetSupportedDataCodecs(std::vector<DataCodec>* codecs) const;
     98 
     99   // Indicates whether the media engine is started.
    100   bool initialized() const { return initialized_; }
    101   // Starts up the media engine.
    102   bool Init();
    103   // Shuts down the media engine.
    104   void Terminate();
    105 
    106   // The operations below all occur on the worker thread.
    107 
    108   // Creates a voice channel, to be associated with the specified session.
    109   VoiceChannel* CreateVoiceChannel(
    110       BaseSession* session, const std::string& content_name, bool rtcp);
    111   // Destroys a voice channel created with the Create API.
    112   void DestroyVoiceChannel(VoiceChannel* voice_channel);
    113   // Creates a video channel, synced with the specified voice channel, and
    114   // associated with the specified session.
    115   VideoChannel* CreateVideoChannel(
    116       BaseSession* session, const std::string& content_name, bool rtcp,
    117       VoiceChannel* voice_channel);
    118   // Destroys a video channel created with the Create API.
    119   void DestroyVideoChannel(VideoChannel* video_channel);
    120   DataChannel* CreateDataChannel(
    121       BaseSession* session, const std::string& content_name,
    122       bool rtcp, DataChannelType data_channel_type);
    123   // Destroys a data channel created with the Create API.
    124   void DestroyDataChannel(DataChannel* data_channel);
    125 
    126   // Creates a soundclip.
    127   Soundclip* CreateSoundclip();
    128   // Destroys a soundclip created with the Create API.
    129   void DestroySoundclip(Soundclip* soundclip);
    130 
    131   // Indicates whether any channels exist.
    132   bool has_channels() const {
    133     return (!voice_channels_.empty() || !video_channels_.empty() ||
    134             !soundclips_.empty());
    135   }
    136 
    137   // Configures the audio and video devices. A null pointer can be passed to
    138   // GetAudioOptions() for any parameter of no interest.
    139   bool GetAudioOptions(std::string* wave_in_device,
    140                        std::string* wave_out_device, int* opts);
    141   bool SetAudioOptions(const std::string& wave_in_device,
    142                        const std::string& wave_out_device, int opts);
    143   bool GetOutputVolume(int* level);
    144   bool SetOutputVolume(int level);
    145   bool IsSameCapturer(const std::string& capturer_name,
    146                       VideoCapturer* capturer);
    147   // TODO(noahric): Nearly everything called "device" in this API is actually a
    148   // device name, so this should really be GetCaptureDeviceName, and the
    149   // next method should be GetCaptureDevice.
    150   bool GetCaptureDevice(std::string* cam_device);
    151   // Gets the current capture Device.
    152   bool GetVideoCaptureDevice(Device* device);
    153   // Create capturer based on what has been set in SetCaptureDevice().
    154   VideoCapturer* CreateVideoCapturer();
    155   bool SetCaptureDevice(const std::string& cam_device);
    156   bool SetDefaultVideoEncoderConfig(const VideoEncoderConfig& config);
    157   // RTX will be enabled/disabled in engines that support it. The supporting
    158   // engines will start offering an RTX codec. Must be called before Init().
    159   bool SetVideoRtxEnabled(bool enable);
    160 
    161   // Starts/stops the local microphone and enables polling of the input level.
    162   bool SetLocalMonitor(bool enable);
    163   bool monitoring() const { return monitoring_; }
    164   // Sets the local renderer where to renderer the local camera.
    165   bool SetLocalRenderer(VideoRenderer* renderer);
    166   // Sets the externally provided video capturer. The ssrc is the ssrc of the
    167   // (video) stream for which the video capturer should be set.
    168   bool SetVideoCapturer(VideoCapturer* capturer);
    169   bool capturing() const { return capturing_; }
    170 
    171   // Configures the logging output of the mediaengine(s).
    172   void SetVoiceLogging(int level, const char* filter);
    173   void SetVideoLogging(int level, const char* filter);
    174 
    175   // The channel manager handles the Tx side for Video processing,
    176   // as well as Tx and Rx side for Voice processing.
    177   // (The Rx Video processing will go throug the simplerenderingmanager,
    178   //  to be implemented).
    179   bool RegisterVideoProcessor(VideoCapturer* capturer,
    180                               VideoProcessor* processor);
    181   bool UnregisterVideoProcessor(VideoCapturer* capturer,
    182                                 VideoProcessor* processor);
    183   bool RegisterVoiceProcessor(uint32 ssrc,
    184                               VoiceProcessor* processor,
    185                               MediaProcessorDirection direction);
    186   bool UnregisterVoiceProcessor(uint32 ssrc,
    187                                 VoiceProcessor* processor,
    188                                 MediaProcessorDirection direction);
    189   // The following are done in the new "CaptureManager" style that
    190   // all local video capturers, processors, and managers should move to.
    191   // TODO(pthatcher): Make methods nicer by having start return a handle that
    192   // can be used for stop and restart, rather than needing to pass around
    193   // formats a a pseudo-handle.
    194   bool StartVideoCapture(VideoCapturer* video_capturer,
    195                          const VideoFormat& video_format);
    196   // When muting, produce black frames then pause the camera.
    197   // When unmuting, start the camera. Camera starts unmuted.
    198   bool MuteToBlackThenPause(VideoCapturer* video_capturer, bool muted);
    199   bool StopVideoCapture(VideoCapturer* video_capturer,
    200                         const VideoFormat& video_format);
    201   bool RestartVideoCapture(VideoCapturer* video_capturer,
    202                            const VideoFormat& previous_format,
    203                            const VideoFormat& desired_format,
    204                            CaptureManager::RestartOptions options);
    205 
    206   bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
    207   bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
    208   bool IsScreencastRunning() const;
    209 
    210   // The operations below occur on the main thread.
    211 
    212   bool GetAudioInputDevices(std::vector<std::string>* names);
    213   bool GetAudioOutputDevices(std::vector<std::string>* names);
    214   bool GetVideoCaptureDevices(std::vector<std::string>* names);
    215   void SetVideoCaptureDeviceMaxFormat(const std::string& usb_id,
    216                                       const VideoFormat& max_format);
    217 
    218   sigslot::repeater0<> SignalDevicesChange;
    219   sigslot::signal2<VideoCapturer*, CaptureState> SignalVideoCaptureStateChange;
    220 
    221   // Returns the current selected device. Note: Subtly different from
    222   // GetCaptureDevice(). See member video_device_ for more details.
    223   // This API is mainly a hook used by unittests.
    224   const std::string& video_device_name() const { return video_device_name_; }
    225 
    226   // TODO(hellner): Remove this function once the engine capturer has been
    227   // removed.
    228   VideoFormat GetStartCaptureFormat();
    229  protected:
    230   // Adds non-transient parameters which can only be changed through the
    231   // options store.
    232   bool SetAudioOptions(const std::string& wave_in_device,
    233                        const std::string& wave_out_device, int opts,
    234                        int delay_offset);
    235   int audio_delay_offset() const { return audio_delay_offset_; }
    236 
    237  private:
    238   typedef std::vector<VoiceChannel*> VoiceChannels;
    239   typedef std::vector<VideoChannel*> VideoChannels;
    240   typedef std::vector<DataChannel*> DataChannels;
    241   typedef std::vector<Soundclip*> Soundclips;
    242 
    243   void Construct(MediaEngineInterface* me,
    244                  DataEngineInterface* dme,
    245                  DeviceManagerInterface* dm,
    246                  CaptureManager* cm,
    247                  talk_base::Thread* worker_thread);
    248   void Terminate_w();
    249   VoiceChannel* CreateVoiceChannel_w(
    250       BaseSession* session, const std::string& content_name, bool rtcp);
    251   void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
    252   VideoChannel* CreateVideoChannel_w(
    253       BaseSession* session, const std::string& content_name, bool rtcp,
    254       VoiceChannel* voice_channel);
    255   void DestroyVideoChannel_w(VideoChannel* video_channel);
    256   DataChannel* CreateDataChannel_w(
    257       BaseSession* session, const std::string& content_name,
    258       bool rtcp, DataChannelType data_channel_type);
    259   void DestroyDataChannel_w(DataChannel* data_channel);
    260   Soundclip* CreateSoundclip_w();
    261   void DestroySoundclip_w(Soundclip* soundclip);
    262   bool SetAudioOptions_w(int opts, int delay_offset, const Device* in_dev,
    263                          const Device* out_dev);
    264   bool SetCaptureDevice_w(const Device* cam_device);
    265   void OnVideoCaptureStateChange(VideoCapturer* capturer,
    266                                  CaptureState result);
    267   bool RegisterVideoProcessor_w(VideoCapturer* capturer,
    268                                 VideoProcessor* processor);
    269   bool UnregisterVideoProcessor_w(VideoCapturer* capturer,
    270                                   VideoProcessor* processor);
    271   bool IsScreencastRunning_w() const;
    272   virtual void OnMessage(talk_base::Message *message);
    273 
    274   talk_base::scoped_ptr<MediaEngineInterface> media_engine_;
    275   talk_base::scoped_ptr<DataEngineInterface> data_media_engine_;
    276   talk_base::scoped_ptr<DeviceManagerInterface> device_manager_;
    277   talk_base::scoped_ptr<CaptureManager> capture_manager_;
    278   bool initialized_;
    279   talk_base::Thread* main_thread_;
    280   talk_base::Thread* worker_thread_;
    281 
    282   VoiceChannels voice_channels_;
    283   VideoChannels video_channels_;
    284   DataChannels data_channels_;
    285   Soundclips soundclips_;
    286 
    287   std::string audio_in_device_;
    288   std::string audio_out_device_;
    289   int audio_options_;
    290   int audio_delay_offset_;
    291   int audio_output_volume_;
    292   std::string camera_device_;
    293   VideoEncoderConfig default_video_encoder_config_;
    294   VideoRenderer* local_renderer_;
    295   bool enable_rtx_;
    296 
    297   bool capturing_;
    298   bool monitoring_;
    299 
    300   // String containing currently set device. Note that this string is subtly
    301   // different from camera_device_. E.g. camera_device_ will list unplugged
    302   // but selected devices while this sting will be empty or contain current
    303   // selected device.
    304   // TODO(hellner): refactor the code such that there is no need to keep two
    305   // strings for video devices that have subtle differences in behavior.
    306   std::string video_device_name_;
    307 };
    308 
    309 }  // namespace cricket
    310 
    311 #endif  // TALK_SESSION_MEDIA_CHANNELMANAGER_H_
    312