2013-07-10 00:45:36 +00:00
|
|
|
/*
|
|
|
|
|
* libjingle
|
|
|
|
|
* Copyright 2004 Google Inc.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TALK_MEDIA_BASE_MEDIAENGINE_H_
|
|
|
|
|
#define TALK_MEDIA_BASE_MEDIAENGINE_H_
|
|
|
|
|
|
2016-01-14 11:01:09 -08:00
|
|
|
#if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS)
|
2013-07-10 00:45:36 +00:00
|
|
|
#include <CoreAudio/CoreAudio.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "talk/media/base/codec.h"
|
|
|
|
|
#include "talk/media/base/mediachannel.h"
|
|
|
|
|
#include "talk/media/base/mediacommon.h"
|
|
|
|
|
#include "talk/media/base/videocapturer.h"
|
|
|
|
|
#include "talk/media/base/videocommon.h"
|
|
|
|
|
#include "talk/media/devices/devicemanager.h"
|
2015-11-06 15:34:49 -08:00
|
|
|
#include "webrtc/audio_state.h"
|
2014-08-13 17:26:08 +00:00
|
|
|
#include "webrtc/base/fileutils.h"
|
|
|
|
|
#include "webrtc/base/sigslotrepeater.h"
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
#if defined(GOOGLE_CHROME_BUILD) || defined(CHROMIUM_BUILD)
|
|
|
|
|
#define DISABLE_MEDIA_ENGINE_FACTORY
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-09-15 12:26:33 +02:00
|
|
|
namespace webrtc {
|
|
|
|
|
class Call;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
namespace cricket {
|
|
|
|
|
|
|
|
|
|
class VideoCapturer;
|
|
|
|
|
|
2015-12-07 10:45:43 +01:00
|
|
|
struct RtpCapabilities {
|
|
|
|
|
std::vector<RtpHeaderExtension> header_extensions;
|
|
|
|
|
};
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
// MediaEngineInterface is an abstraction of a media engine which can be
|
|
|
|
|
// subclassed to support different media componentry backends.
|
|
|
|
|
// It supports voice and video operations in the same class to facilitate
|
|
|
|
|
// proper synchronization between both media types.
|
|
|
|
|
class MediaEngineInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~MediaEngineInterface() {}
|
|
|
|
|
|
|
|
|
|
// Initialization
|
|
|
|
|
// Starts the engine.
|
2014-07-29 17:36:52 +00:00
|
|
|
virtual bool Init(rtc::Thread* worker_thread) = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
// Shuts down the engine.
|
|
|
|
|
virtual void Terminate() = 0;
|
2015-09-15 12:26:33 +02:00
|
|
|
// TODO(solenberg): Remove once VoE API refactoring is done.
|
2015-11-06 15:34:49 -08:00
|
|
|
virtual rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
// MediaChannel creation
|
|
|
|
|
// Creates a voice media channel. Returns NULL on failure.
|
2015-09-15 12:26:33 +02:00
|
|
|
virtual VoiceMediaChannel* CreateChannel(
|
|
|
|
|
webrtc::Call* call,
|
|
|
|
|
const AudioOptions& options) = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
// Creates a video media channel, paired with the specified voice channel.
|
|
|
|
|
// Returns NULL on failure.
|
2014-10-14 20:29:28 +00:00
|
|
|
virtual VideoMediaChannel* CreateVideoChannel(
|
2015-09-15 12:26:33 +02:00
|
|
|
webrtc::Call* call,
|
|
|
|
|
const VideoOptions& options) = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
// Device configuration
|
|
|
|
|
// Gets the current speaker volume, as a value between 0 and 255.
|
|
|
|
|
virtual bool GetOutputVolume(int* level) = 0;
|
|
|
|
|
// Sets the current speaker volume, as a value between 0 and 255.
|
|
|
|
|
virtual bool SetOutputVolume(int level) = 0;
|
|
|
|
|
|
|
|
|
|
// Gets the current microphone level, as a value between 0 and 10.
|
|
|
|
|
virtual int GetInputLevel() = 0;
|
|
|
|
|
|
|
|
|
|
virtual const std::vector<AudioCodec>& audio_codecs() = 0;
|
2015-12-07 10:45:43 +01:00
|
|
|
virtual RtpCapabilities GetAudioCapabilities() = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
virtual const std::vector<VideoCodec>& video_codecs() = 0;
|
2015-12-07 10:45:43 +01:00
|
|
|
virtual RtpCapabilities GetVideoCapabilities() = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
|
Revert of Reland "Added option to specify a maximum file size when recording an AEC dump." (patchset #2 id:20001 of https://codereview.webrtc.org/1541633002/ )
Reason for revert:
Compile error on Android needs to be fixed before relanding.
Original issue's description:
> Reland "Added option to specify a maximum file size when recording an AEC dump.", commit ae2c5ad12afc8cc29fe9c59dea432b697b871a87.
>
> The revert of the original CL was commit 36d4c545007129446e551c45c17b25377dce89a4.
> Original review: https://codereview.webrtc.org/1413483003/
>
> The original CL changes a function on audio_processing.h that is used by Chrome, this CL adds back the old function.
>
> NOTRY=true
> TBR=glaznev@webrtc.org, henrik.lundin@webrtc.org, solenberg@google.com, henrikg@webrtc.org, perkj@webrtc.org
> BUG=webrtc:4741
>
> Committed: https://crrev.com/f4f5cb09277d5ef6aeac8341e5f54a055867803a
> Cr-Commit-Position: refs/heads/master@{#11093}
TBR=glaznev@webrtc.org,henrik.lundin@webrtc.org,solenberg@google.com,henrikg@webrtc.org,perkj@webrtc.org,kwiberg@webrtc.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:4741
Review URL: https://codereview.webrtc.org/1537213002
Cr-Commit-Position: refs/heads/master@{#11094}
2015-12-19 10:14:10 -08:00
|
|
|
// Starts AEC dump using existing file.
|
|
|
|
|
virtual bool StartAecDump(rtc::PlatformFile file) = 0;
|
2015-10-16 02:22:18 -07:00
|
|
|
|
2015-10-22 03:25:41 -07:00
|
|
|
// Stops recording AEC dump.
|
|
|
|
|
virtual void StopAecDump() = 0;
|
|
|
|
|
|
2015-10-16 02:22:18 -07:00
|
|
|
// Starts RtcEventLog using existing file.
|
|
|
|
|
virtual bool StartRtcEventLog(rtc::PlatformFile file) = 0;
|
|
|
|
|
|
|
|
|
|
// Stops recording an RtcEventLog.
|
|
|
|
|
virtual void StopRtcEventLog() = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(DISABLE_MEDIA_ENGINE_FACTORY)
|
|
|
|
|
class MediaEngineFactory {
|
|
|
|
|
public:
|
2014-03-03 18:30:11 +00:00
|
|
|
typedef cricket::MediaEngineInterface* (*MediaEngineCreateFunction)();
|
|
|
|
|
// Creates a media engine, using either the compiled system default or the
|
|
|
|
|
// creation function specified in SetCreateFunction, if specified.
|
2013-07-10 00:45:36 +00:00
|
|
|
static MediaEngineInterface* Create();
|
2014-03-03 18:30:11 +00:00
|
|
|
// Sets the function used when calling Create. If unset, the compiled system
|
|
|
|
|
// default will be used. Returns the old create function, or NULL if one
|
|
|
|
|
// wasn't set. Likewise, NULL can be used as the |function| parameter to
|
|
|
|
|
// reset to the default behavior.
|
|
|
|
|
static MediaEngineCreateFunction SetCreateFunction(
|
|
|
|
|
MediaEngineCreateFunction function);
|
|
|
|
|
private:
|
|
|
|
|
static MediaEngineCreateFunction create_function_;
|
2013-07-10 00:45:36 +00:00
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// CompositeMediaEngine constructs a MediaEngine from separate
|
|
|
|
|
// voice and video engine classes.
|
|
|
|
|
template<class VOICE, class VIDEO>
|
|
|
|
|
class CompositeMediaEngine : public MediaEngineInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~CompositeMediaEngine() {}
|
2014-07-29 17:36:52 +00:00
|
|
|
virtual bool Init(rtc::Thread* worker_thread) {
|
2013-07-10 00:45:36 +00:00
|
|
|
if (!voice_.Init(worker_thread))
|
|
|
|
|
return false;
|
2015-05-22 09:04:09 +02:00
|
|
|
video_.Init();
|
2013-07-10 00:45:36 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
virtual void Terminate() {
|
|
|
|
|
voice_.Terminate();
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 15:34:49 -08:00
|
|
|
virtual rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const {
|
|
|
|
|
return voice_.GetAudioState();
|
2015-09-15 12:26:33 +02:00
|
|
|
}
|
|
|
|
|
virtual VoiceMediaChannel* CreateChannel(webrtc::Call* call,
|
|
|
|
|
const AudioOptions& options) {
|
|
|
|
|
return voice_.CreateChannel(call, options);
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2015-09-15 12:26:33 +02:00
|
|
|
virtual VideoMediaChannel* CreateVideoChannel(webrtc::Call* call,
|
|
|
|
|
const VideoOptions& options) {
|
|
|
|
|
return video_.CreateChannel(call, options);
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual bool GetOutputVolume(int* level) {
|
|
|
|
|
return voice_.GetOutputVolume(level);
|
|
|
|
|
}
|
|
|
|
|
virtual bool SetOutputVolume(int level) {
|
|
|
|
|
return voice_.SetOutputVolume(level);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual int GetInputLevel() {
|
|
|
|
|
return voice_.GetInputLevel();
|
|
|
|
|
}
|
|
|
|
|
virtual const std::vector<AudioCodec>& audio_codecs() {
|
|
|
|
|
return voice_.codecs();
|
|
|
|
|
}
|
2015-12-07 10:45:43 +01:00
|
|
|
virtual RtpCapabilities GetAudioCapabilities() {
|
|
|
|
|
return voice_.GetCapabilities();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
|
|
|
|
virtual const std::vector<VideoCodec>& video_codecs() {
|
|
|
|
|
return video_.codecs();
|
|
|
|
|
}
|
2015-12-07 10:45:43 +01:00
|
|
|
virtual RtpCapabilities GetVideoCapabilities() {
|
|
|
|
|
return video_.GetCapabilities();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
Revert of Reland "Added option to specify a maximum file size when recording an AEC dump." (patchset #2 id:20001 of https://codereview.webrtc.org/1541633002/ )
Reason for revert:
Compile error on Android needs to be fixed before relanding.
Original issue's description:
> Reland "Added option to specify a maximum file size when recording an AEC dump.", commit ae2c5ad12afc8cc29fe9c59dea432b697b871a87.
>
> The revert of the original CL was commit 36d4c545007129446e551c45c17b25377dce89a4.
> Original review: https://codereview.webrtc.org/1413483003/
>
> The original CL changes a function on audio_processing.h that is used by Chrome, this CL adds back the old function.
>
> NOTRY=true
> TBR=glaznev@webrtc.org, henrik.lundin@webrtc.org, solenberg@google.com, henrikg@webrtc.org, perkj@webrtc.org
> BUG=webrtc:4741
>
> Committed: https://crrev.com/f4f5cb09277d5ef6aeac8341e5f54a055867803a
> Cr-Commit-Position: refs/heads/master@{#11093}
TBR=glaznev@webrtc.org,henrik.lundin@webrtc.org,solenberg@google.com,henrikg@webrtc.org,perkj@webrtc.org,kwiberg@webrtc.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:4741
Review URL: https://codereview.webrtc.org/1537213002
Cr-Commit-Position: refs/heads/master@{#11094}
2015-12-19 10:14:10 -08:00
|
|
|
virtual bool StartAecDump(rtc::PlatformFile file) {
|
|
|
|
|
return voice_.StartAecDump(file);
|
2013-12-13 00:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
2015-10-22 03:25:41 -07:00
|
|
|
virtual void StopAecDump() {
|
|
|
|
|
voice_.StopAecDump();
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 02:22:18 -07:00
|
|
|
virtual bool StartRtcEventLog(rtc::PlatformFile file) {
|
|
|
|
|
return voice_.StartRtcEventLog(file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void StopRtcEventLog() { voice_.StopRtcEventLog(); }
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
protected:
|
|
|
|
|
VOICE voice_;
|
|
|
|
|
VIDEO video_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum DataChannelType {
|
|
|
|
|
DCT_NONE = 0,
|
|
|
|
|
DCT_RTP = 1,
|
|
|
|
|
DCT_SCTP = 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class DataEngineInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~DataEngineInterface() {}
|
|
|
|
|
virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0;
|
|
|
|
|
virtual const std::vector<DataCodec>& data_codecs() = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace cricket
|
|
|
|
|
|
|
|
|
|
#endif // TALK_MEDIA_BASE_MEDIAENGINE_H_
|