2013-07-10 00:45:36 +00:00
|
|
|
/*
|
2016-02-07 20:46:45 -08:00
|
|
|
* Copyright (c) 2004 The WebRTC project authors. All Rights Reserved.
|
2013-07-10 00:45:36 +00:00
|
|
|
*
|
2016-02-07 20:46:45 -08:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2013-07-10 00:45:36 +00:00
|
|
|
*/
|
|
|
|
|
|
Move talk/media to webrtc/media
I removed the 'libjingle' target in talk/libjingle.gyp and replaced
all users of it with base/base.gyp:rtc_base. It seems the jsoncpp
and expat dependencies were not used by it's previous references.
The files in talk/media/testdata were uploaded to Google Storage and
added .sha1 files in resources/media instead of simply moving them.
The previously disabled warnings that were inherited from
talk/build/common.gypi are now replaced by target-specific disabling
of only the failing warnings. Additional disabling was needed since the stricter
compilation warnings that applies to code in webrtc/.
License headers will be updated in a follow-up CL in order to not
break Git history.
Other modifications:
* Updated the header guards.
* Sorted the includes using chromium/src/tools/sort-headers.py
except for these files:
talk/app/webrtc/peerconnectionendtoend_unittest.cc
talk/app/webrtc/java/jni/androidmediadecoder_jni.cc
talk/app/webrtc/java/jni/androidmediaencoder_jni.cc
webrtc/media/devices/win32devicemanager.cc.
* Unused GYP reference to libjingle_tests_additional_deps was removed.
* Removed duplicated GYP entries of
webrtc/base/testutils.cc
webrtc/base/testutils.h
The HAVE_WEBRTC_VIDEO and HAVE_WEBRTC_VOICE defines were used by only talk/media,
so they were moved to the media.gyp.
I also checked that none of
EXPAT_RELATIVE_PATH,
FEATURE_ENABLE_VOICEMAIL,
GTEST_RELATIVE_PATH,
JSONCPP_RELATIVE_PATH,
LOGGING=1,
SRTP_RELATIVE_PATH,
FEATURE_ENABLE_SSL,
FEATURE_ENABLE_VOICEMAIL,
FEATURE_ENABLE_PSTN,
HAVE_SCTP,
HAVE_SRTP,
are used by the talk/media code.
For Chromium, the following changes will need to be applied to the roll CL that updates the
DEPS for WebRTC and libjingle: https://codereview.chromium.org/1604303002/
BUG=webrtc:5420
NOPRESUBMIT=True
TBR=tommi@webrtc.org
Review URL: https://codereview.webrtc.org/1587193006
Cr-Commit-Position: refs/heads/master@{#11495}
2016-02-04 23:52:28 -08:00
|
|
|
#ifndef WEBRTC_MEDIA_BASE_MEDIAENGINE_H_
|
|
|
|
|
#define WEBRTC_MEDIA_BASE_MEDIAENGINE_H_
|
2013-07-10 00:45:36 +00:00
|
|
|
|
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>
|
|
|
|
|
|
2016-08-31 07:33:05 -07:00
|
|
|
#include "webrtc/api/call/audio_state.h"
|
2016-03-16 19:07:43 -07:00
|
|
|
#include "webrtc/api/rtpparameters.h"
|
2014-08-13 17:26:08 +00:00
|
|
|
#include "webrtc/base/fileutils.h"
|
|
|
|
|
#include "webrtc/base/sigslotrepeater.h"
|
Move talk/media to webrtc/media
I removed the 'libjingle' target in talk/libjingle.gyp and replaced
all users of it with base/base.gyp:rtc_base. It seems the jsoncpp
and expat dependencies were not used by it's previous references.
The files in talk/media/testdata were uploaded to Google Storage and
added .sha1 files in resources/media instead of simply moving them.
The previously disabled warnings that were inherited from
talk/build/common.gypi are now replaced by target-specific disabling
of only the failing warnings. Additional disabling was needed since the stricter
compilation warnings that applies to code in webrtc/.
License headers will be updated in a follow-up CL in order to not
break Git history.
Other modifications:
* Updated the header guards.
* Sorted the includes using chromium/src/tools/sort-headers.py
except for these files:
talk/app/webrtc/peerconnectionendtoend_unittest.cc
talk/app/webrtc/java/jni/androidmediadecoder_jni.cc
talk/app/webrtc/java/jni/androidmediaencoder_jni.cc
webrtc/media/devices/win32devicemanager.cc.
* Unused GYP reference to libjingle_tests_additional_deps was removed.
* Removed duplicated GYP entries of
webrtc/base/testutils.cc
webrtc/base/testutils.h
The HAVE_WEBRTC_VIDEO and HAVE_WEBRTC_VOICE defines were used by only talk/media,
so they were moved to the media.gyp.
I also checked that none of
EXPAT_RELATIVE_PATH,
FEATURE_ENABLE_VOICEMAIL,
GTEST_RELATIVE_PATH,
JSONCPP_RELATIVE_PATH,
LOGGING=1,
SRTP_RELATIVE_PATH,
FEATURE_ENABLE_SSL,
FEATURE_ENABLE_VOICEMAIL,
FEATURE_ENABLE_PSTN,
HAVE_SCTP,
HAVE_SRTP,
are used by the talk/media code.
For Chromium, the following changes will need to be applied to the roll CL that updates the
DEPS for WebRTC and libjingle: https://codereview.chromium.org/1604303002/
BUG=webrtc:5420
NOPRESUBMIT=True
TBR=tommi@webrtc.org
Review URL: https://codereview.webrtc.org/1587193006
Cr-Commit-Position: refs/heads/master@{#11495}
2016-02-04 23:52:28 -08:00
|
|
|
#include "webrtc/media/base/codec.h"
|
|
|
|
|
#include "webrtc/media/base/mediachannel.h"
|
|
|
|
|
#include "webrtc/media/base/videocommon.h"
|
2016-06-13 07:34:51 -07:00
|
|
|
#include "webrtc/modules/audio_coding/codecs/audio_decoder_factory.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 {
|
2016-03-30 23:28:51 -07:00
|
|
|
class AudioDeviceModule;
|
2015-09-15 12:26:33 +02:00
|
|
|
class Call;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
namespace cricket {
|
|
|
|
|
|
2015-12-07 10:45:43 +01:00
|
|
|
struct RtpCapabilities {
|
2016-05-26 11:24:55 -07:00
|
|
|
std::vector<webrtc::RtpExtension> header_extensions;
|
2015-12-07 10:45:43 +01:00
|
|
|
};
|
|
|
|
|
|
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.
|
2016-03-30 23:28:51 -07:00
|
|
|
virtual bool Init() = 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.
|
2016-02-12 02:27:06 -08:00
|
|
|
virtual VoiceMediaChannel* CreateChannel(webrtc::Call* call,
|
|
|
|
|
const MediaConfig& config,
|
|
|
|
|
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,
|
2016-02-12 02:27:06 -08:00
|
|
|
const MediaConfig& config,
|
2015-09-15 12:26:33 +02:00
|
|
|
const VideoOptions& options) = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
// Gets the current microphone level, as a value between 0 and 10.
|
|
|
|
|
virtual int GetInputLevel() = 0;
|
|
|
|
|
|
2016-06-14 07:12:39 -07:00
|
|
|
virtual const std::vector<AudioCodec>& audio_send_codecs() = 0;
|
|
|
|
|
virtual const std::vector<AudioCodec>& audio_recv_codecs() = 0;
|
2015-12-07 10:45:43 +01:00
|
|
|
virtual RtpCapabilities GetAudioCapabilities() = 0;
|
2016-11-10 03:36:53 -08: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
|
|
|
|
2016-01-15 03:06:36 -08:00
|
|
|
// Starts AEC dump using existing file, a maximum file size in bytes can be
|
|
|
|
|
// specified. Logging is stopped just before the size limit is exceeded.
|
|
|
|
|
// If max_size_bytes is set to a value <= 0, no limit will be used.
|
|
|
|
|
virtual bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) = 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;
|
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:
|
2016-06-13 07:34:51 -07:00
|
|
|
CompositeMediaEngine(
|
|
|
|
|
webrtc::AudioDeviceModule* adm,
|
|
|
|
|
const rtc::scoped_refptr<webrtc::AudioDecoderFactory>&
|
|
|
|
|
audio_decoder_factory)
|
|
|
|
|
: voice_(adm, audio_decoder_factory) {}
|
2013-07-10 00:45:36 +00:00
|
|
|
virtual ~CompositeMediaEngine() {}
|
2016-03-30 23:28:51 -07:00
|
|
|
virtual bool Init() {
|
2015-05-22 09:04:09 +02:00
|
|
|
video_.Init();
|
2013-07-10 00:45:36 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
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,
|
2016-02-12 02:27:06 -08:00
|
|
|
const MediaConfig& config,
|
2015-09-15 12:26:33 +02:00
|
|
|
const AudioOptions& options) {
|
2016-02-12 02:27:06 -08:00
|
|
|
return voice_.CreateChannel(call, config, options);
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2015-09-15 12:26:33 +02:00
|
|
|
virtual VideoMediaChannel* CreateVideoChannel(webrtc::Call* call,
|
2016-02-12 02:27:06 -08:00
|
|
|
const MediaConfig& config,
|
2015-09-15 12:26:33 +02:00
|
|
|
const VideoOptions& options) {
|
2016-02-12 02:27:06 -08:00
|
|
|
return video_.CreateChannel(call, config, options);
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual int GetInputLevel() {
|
|
|
|
|
return voice_.GetInputLevel();
|
|
|
|
|
}
|
2016-06-14 07:12:39 -07:00
|
|
|
virtual const std::vector<AudioCodec>& audio_send_codecs() {
|
|
|
|
|
return voice_.send_codecs();
|
|
|
|
|
}
|
|
|
|
|
virtual const std::vector<AudioCodec>& audio_recv_codecs() {
|
|
|
|
|
return voice_.recv_codecs();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2015-12-07 10:45:43 +01:00
|
|
|
virtual RtpCapabilities GetAudioCapabilities() {
|
|
|
|
|
return voice_.GetCapabilities();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2016-11-10 03:36:53 -08:00
|
|
|
virtual const std::vector<VideoCodec>& video_codecs() {
|
2013-07-10 00:45:36 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2016-01-15 03:06:36 -08:00
|
|
|
virtual bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) {
|
|
|
|
|
return voice_.StartAecDump(file, max_size_bytes);
|
2013-12-13 00:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
2015-10-22 03:25:41 -07:00
|
|
|
virtual void StopAecDump() {
|
|
|
|
|
voice_.StopAecDump();
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
protected:
|
|
|
|
|
VOICE voice_;
|
|
|
|
|
VIDEO video_;
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-05 11:14:50 -07:00
|
|
|
enum DataChannelType { DCT_NONE = 0, DCT_RTP = 1, DCT_SCTP = 2, DCT_QUIC = 3 };
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
class DataEngineInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~DataEngineInterface() {}
|
|
|
|
|
virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0;
|
|
|
|
|
virtual const std::vector<DataCodec>& data_codecs() = 0;
|
|
|
|
|
};
|
|
|
|
|
|
2016-03-16 19:07:43 -07:00
|
|
|
webrtc::RtpParameters CreateRtpParametersWithOneEncoding();
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
} // namespace cricket
|
|
|
|
|
|
Move talk/media to webrtc/media
I removed the 'libjingle' target in talk/libjingle.gyp and replaced
all users of it with base/base.gyp:rtc_base. It seems the jsoncpp
and expat dependencies were not used by it's previous references.
The files in talk/media/testdata were uploaded to Google Storage and
added .sha1 files in resources/media instead of simply moving them.
The previously disabled warnings that were inherited from
talk/build/common.gypi are now replaced by target-specific disabling
of only the failing warnings. Additional disabling was needed since the stricter
compilation warnings that applies to code in webrtc/.
License headers will be updated in a follow-up CL in order to not
break Git history.
Other modifications:
* Updated the header guards.
* Sorted the includes using chromium/src/tools/sort-headers.py
except for these files:
talk/app/webrtc/peerconnectionendtoend_unittest.cc
talk/app/webrtc/java/jni/androidmediadecoder_jni.cc
talk/app/webrtc/java/jni/androidmediaencoder_jni.cc
webrtc/media/devices/win32devicemanager.cc.
* Unused GYP reference to libjingle_tests_additional_deps was removed.
* Removed duplicated GYP entries of
webrtc/base/testutils.cc
webrtc/base/testutils.h
The HAVE_WEBRTC_VIDEO and HAVE_WEBRTC_VOICE defines were used by only talk/media,
so they were moved to the media.gyp.
I also checked that none of
EXPAT_RELATIVE_PATH,
FEATURE_ENABLE_VOICEMAIL,
GTEST_RELATIVE_PATH,
JSONCPP_RELATIVE_PATH,
LOGGING=1,
SRTP_RELATIVE_PATH,
FEATURE_ENABLE_SSL,
FEATURE_ENABLE_VOICEMAIL,
FEATURE_ENABLE_PSTN,
HAVE_SCTP,
HAVE_SRTP,
are used by the talk/media code.
For Chromium, the following changes will need to be applied to the roll CL that updates the
DEPS for WebRTC and libjingle: https://codereview.chromium.org/1604303002/
BUG=webrtc:5420
NOPRESUBMIT=True
TBR=tommi@webrtc.org
Review URL: https://codereview.webrtc.org/1587193006
Cr-Commit-Position: refs/heads/master@{#11495}
2016-02-04 23:52:28 -08:00
|
|
|
#endif // WEBRTC_MEDIA_BASE_MEDIAENGINE_H_
|