2015-09-24 16:47:53 -07:00
|
|
|
/*
|
2016-02-10 07:54:43 -08:00
|
|
|
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
2015-09-24 16:47:53 -07:00
|
|
|
*
|
2016-02-10 07:54:43 -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.
|
2015-09-24 16:47:53 -07:00
|
|
|
*/
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
// This file contains classes that implement RtpReceiverInterface.
|
|
|
|
|
// An RtpReceiver associates a MediaStreamTrackInterface with an underlying
|
|
|
|
|
// transport (provided by AudioProviderInterface/VideoProviderInterface)
|
|
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#ifndef WEBRTC_API_RTPRECEIVER_H_
|
|
|
|
|
#define WEBRTC_API_RTPRECEIVER_H_
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#include "webrtc/api/mediastreamprovider.h"
|
|
|
|
|
#include "webrtc/api/rtpreceiverinterface.h"
|
2016-03-24 03:16:19 -07:00
|
|
|
#include "webrtc/api/remoteaudiosource.h"
|
2016-03-10 18:32:00 +01:00
|
|
|
#include "webrtc/api/videotracksource.h"
|
2015-09-28 16:53:55 -07:00
|
|
|
#include "webrtc/base/basictypes.h"
|
2016-03-10 18:32:00 +01:00
|
|
|
#include "webrtc/media/base/videobroadcaster.h"
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
class AudioRtpReceiver : public ObserverInterface,
|
|
|
|
|
public AudioSourceInterface::AudioObserver,
|
|
|
|
|
public rtc::RefCountedObject<RtpReceiverInterface> {
|
|
|
|
|
public:
|
2016-03-24 03:16:19 -07:00
|
|
|
AudioRtpReceiver(MediaStreamInterface* stream,
|
|
|
|
|
const std::string& track_id,
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t ssrc,
|
2015-09-28 16:53:55 -07:00
|
|
|
AudioProviderInterface* provider);
|
|
|
|
|
|
|
|
|
|
virtual ~AudioRtpReceiver();
|
|
|
|
|
|
|
|
|
|
// ObserverInterface implementation
|
|
|
|
|
void OnChanged() override;
|
|
|
|
|
|
|
|
|
|
// AudioSourceInterface::AudioObserver implementation
|
|
|
|
|
void OnSetVolume(double volume) override;
|
|
|
|
|
|
2016-03-24 03:16:19 -07:00
|
|
|
rtc::scoped_refptr<AudioTrackInterface> audio_track() const {
|
|
|
|
|
return track_.get();
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
// RtpReceiverInterface implementation
|
|
|
|
|
rtc::scoped_refptr<MediaStreamTrackInterface> track() const override {
|
|
|
|
|
return track_.get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string id() const override { return id_; }
|
|
|
|
|
|
|
|
|
|
void Stop() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void Reconfigure();
|
|
|
|
|
|
2015-12-12 01:37:01 +01:00
|
|
|
const std::string id_;
|
|
|
|
|
const uint32_t ssrc_;
|
|
|
|
|
AudioProviderInterface* provider_; // Set to null in Stop().
|
2016-03-24 03:16:19 -07:00
|
|
|
const rtc::scoped_refptr<AudioTrackInterface> track_;
|
2015-09-28 16:53:55 -07:00
|
|
|
bool cached_track_enabled_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class VideoRtpReceiver : public rtc::RefCountedObject<RtpReceiverInterface> {
|
|
|
|
|
public:
|
2016-03-10 18:32:00 +01:00
|
|
|
VideoRtpReceiver(MediaStreamInterface* stream,
|
|
|
|
|
const std::string& track_id,
|
|
|
|
|
rtc::Thread* worker_thread,
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t ssrc,
|
2015-09-28 16:53:55 -07:00
|
|
|
VideoProviderInterface* provider);
|
|
|
|
|
|
|
|
|
|
virtual ~VideoRtpReceiver();
|
|
|
|
|
|
2016-03-10 18:32:00 +01:00
|
|
|
rtc::scoped_refptr<VideoTrackInterface> video_track() const {
|
|
|
|
|
return track_.get();
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
// RtpReceiverInterface implementation
|
|
|
|
|
rtc::scoped_refptr<MediaStreamTrackInterface> track() const override {
|
|
|
|
|
return track_.get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string id() const override { return id_; }
|
|
|
|
|
|
|
|
|
|
void Stop() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::string id_;
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t ssrc_;
|
2015-09-28 16:53:55 -07:00
|
|
|
VideoProviderInterface* provider_;
|
2016-03-10 18:32:00 +01:00
|
|
|
// |broadcaster_| is needed since the decoder can only handle one sink.
|
|
|
|
|
// It might be better if the decoder can handle multiple sinks and consider
|
|
|
|
|
// the VideoSinkWants.
|
|
|
|
|
rtc::VideoBroadcaster broadcaster_;
|
|
|
|
|
// |source_| is held here to be able to change the state of the source when
|
|
|
|
|
// the VideoRtpReceiver is stopped.
|
|
|
|
|
rtc::scoped_refptr<VideoTrackSource> source_;
|
|
|
|
|
rtc::scoped_refptr<VideoTrackInterface> track_;
|
2015-09-28 16:53:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#endif // WEBRTC_API_RTPRECEIVER_H_
|