This will later allow simulcast to be set up without any SDP manipulation. Currently limited to only one layer as the SDP generated is not spec compliant and more work is required to support simulcast. Initial encoding parameters are deferred and applied when the ssrc is set on the sender. This allows parameters to be changed before negotiation is completed. Bug: webrtc:7600 Change-Id: I0a31cd1c2bfc72ebb61ce0fa4fa69d87e3d8b74d Reviewed-on: https://webrtc-review.googlesource.com/95488 Commit-Queue: Florent Castelli <orphis@webrtc.org> Reviewed-by: Seth Hampson <shampson@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24917}
169 lines
5.7 KiB
C++
169 lines
5.7 KiB
C++
/*
|
|
* Copyright (c) 2004 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef MEDIA_BASE_MEDIAENGINE_H_
|
|
#define MEDIA_BASE_MEDIAENGINE_H_
|
|
|
|
#if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS)
|
|
#include <CoreAudio/CoreAudio.h>
|
|
#endif
|
|
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "api/audio_codecs/audio_decoder_factory.h"
|
|
#include "api/audio_codecs/audio_encoder_factory.h"
|
|
#include "api/rtpparameters.h"
|
|
#include "call/audio_state.h"
|
|
#include "media/base/codec.h"
|
|
#include "media/base/mediachannel.h"
|
|
#include "media/base/videocommon.h"
|
|
#include "rtc_base/platform_file.h"
|
|
|
|
namespace webrtc {
|
|
class AudioDeviceModule;
|
|
class AudioMixer;
|
|
class AudioProcessing;
|
|
class Call;
|
|
} // namespace webrtc
|
|
|
|
namespace cricket {
|
|
|
|
webrtc::RTCError ValidateRtpParameters(
|
|
const webrtc::RtpParameters& old_parameters,
|
|
const webrtc::RtpParameters& new_parameters);
|
|
|
|
struct RtpCapabilities {
|
|
RtpCapabilities();
|
|
~RtpCapabilities();
|
|
std::vector<webrtc::RtpExtension> header_extensions;
|
|
};
|
|
|
|
// 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.
|
|
virtual bool Init() = 0;
|
|
// TODO(solenberg): Remove once VoE API refactoring is done.
|
|
virtual rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const = 0;
|
|
|
|
// MediaChannel creation
|
|
// Creates a voice media channel. Returns NULL on failure.
|
|
virtual VoiceMediaChannel* CreateChannel(webrtc::Call* call,
|
|
const MediaConfig& config,
|
|
const AudioOptions& options) = 0;
|
|
// Creates a video media channel, paired with the specified voice channel.
|
|
// Returns NULL on failure.
|
|
virtual VideoMediaChannel* CreateVideoChannel(
|
|
webrtc::Call* call,
|
|
const MediaConfig& config,
|
|
const VideoOptions& options) = 0;
|
|
|
|
virtual const std::vector<AudioCodec>& audio_send_codecs() = 0;
|
|
virtual const std::vector<AudioCodec>& audio_recv_codecs() = 0;
|
|
virtual RtpCapabilities GetAudioCapabilities() = 0;
|
|
virtual std::vector<VideoCodec> video_codecs() = 0;
|
|
virtual RtpCapabilities GetVideoCapabilities() = 0;
|
|
|
|
// 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;
|
|
|
|
// Stops recording AEC dump.
|
|
virtual void StopAecDump() = 0;
|
|
};
|
|
|
|
// CompositeMediaEngine constructs a MediaEngine from separate
|
|
// voice and video engine classes.
|
|
template <class VOICE, class VIDEO>
|
|
class CompositeMediaEngine : public MediaEngineInterface {
|
|
public:
|
|
template <class... Args1, class... Args2>
|
|
CompositeMediaEngine(std::tuple<Args1...> first_args,
|
|
std::tuple<Args2...> second_args)
|
|
: engines_(std::piecewise_construct,
|
|
std::move(first_args),
|
|
std::move(second_args)) {}
|
|
|
|
virtual ~CompositeMediaEngine() {}
|
|
virtual bool Init() {
|
|
voice().Init();
|
|
return true;
|
|
}
|
|
|
|
virtual rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const {
|
|
return voice().GetAudioState();
|
|
}
|
|
virtual VoiceMediaChannel* CreateChannel(webrtc::Call* call,
|
|
const MediaConfig& config,
|
|
const AudioOptions& options) {
|
|
return voice().CreateChannel(call, config, options);
|
|
}
|
|
virtual VideoMediaChannel* CreateVideoChannel(webrtc::Call* call,
|
|
const MediaConfig& config,
|
|
const VideoOptions& options) {
|
|
return video().CreateChannel(call, config, options);
|
|
}
|
|
|
|
virtual const std::vector<AudioCodec>& audio_send_codecs() {
|
|
return voice().send_codecs();
|
|
}
|
|
virtual const std::vector<AudioCodec>& audio_recv_codecs() {
|
|
return voice().recv_codecs();
|
|
}
|
|
virtual RtpCapabilities GetAudioCapabilities() {
|
|
return voice().GetCapabilities();
|
|
}
|
|
virtual std::vector<VideoCodec> video_codecs() { return video().codecs(); }
|
|
virtual RtpCapabilities GetVideoCapabilities() {
|
|
return video().GetCapabilities();
|
|
}
|
|
|
|
virtual bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) {
|
|
return voice().StartAecDump(file, max_size_bytes);
|
|
}
|
|
|
|
virtual void StopAecDump() { voice().StopAecDump(); }
|
|
|
|
protected:
|
|
VOICE& voice() { return engines_.first; }
|
|
VIDEO& video() { return engines_.second; }
|
|
const VOICE& voice() const { return engines_.first; }
|
|
const VIDEO& video() const { return engines_.second; }
|
|
|
|
private:
|
|
std::pair<VOICE, VIDEO> engines_;
|
|
};
|
|
|
|
enum DataChannelType { DCT_NONE = 0, DCT_RTP = 1, DCT_SCTP = 2 };
|
|
|
|
class DataEngineInterface {
|
|
public:
|
|
virtual ~DataEngineInterface() {}
|
|
virtual DataMediaChannel* CreateChannel(const MediaConfig& config) = 0;
|
|
virtual const std::vector<DataCodec>& data_codecs() = 0;
|
|
};
|
|
|
|
webrtc::RtpParameters CreateRtpParametersWithOneEncoding();
|
|
webrtc::RtpParameters CreateRtpParametersWithEncodings(StreamParams sp);
|
|
|
|
} // namespace cricket
|
|
|
|
#endif // MEDIA_BASE_MEDIAENGINE_H_
|