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
|
2016-06-27 16:30:35 -07:00
|
|
|
// transport (provided by cricket::VoiceChannel/cricket::VideoChannel)
|
2015-09-28 16:53:55 -07:00
|
|
|
|
2017-01-23 04:56:25 -08:00
|
|
|
#ifndef WEBRTC_PC_RTPRECEIVER_H_
|
|
|
|
|
#define WEBRTC_PC_RTPRECEIVER_H_
|
2015-09-28 16:53:55 -07:00
|
|
|
|
2017-01-02 08:42:32 -08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
#include <string>
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
#include "webrtc/api/mediastreaminterface.h"
|
2016-02-10 10:53:12 +01:00
|
|
|
#include "webrtc/api/rtpreceiverinterface.h"
|
2016-03-10 18:32:00 +01:00
|
|
|
#include "webrtc/media/base/videobroadcaster.h"
|
2016-06-27 16:30:35 -07:00
|
|
|
#include "webrtc/pc/channel.h"
|
2017-01-23 04:56:25 -08:00
|
|
|
#include "webrtc/pc/remoteaudiosource.h"
|
|
|
|
|
#include "webrtc/pc/videotracksource.h"
|
2017-07-06 19:44:34 +02:00
|
|
|
#include "webrtc/rtc_base/basictypes.h"
|
|
|
|
|
#include "webrtc/rtc_base/sigslot.h"
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2016-06-06 14:27:39 -07:00
|
|
|
// Internal class used by PeerConnection.
|
|
|
|
|
class RtpReceiverInternal : public RtpReceiverInterface {
|
|
|
|
|
public:
|
|
|
|
|
virtual void Stop() = 0;
|
2017-02-25 18:15:09 -08:00
|
|
|
// This SSRC is used as an identifier for the receiver between the API layer
|
2017-06-12 01:16:46 -07:00
|
|
|
// and the WebRtcVideoEngine, WebRtcVoiceEngine layer.
|
2017-02-25 18:15:09 -08:00
|
|
|
virtual uint32_t ssrc() const = 0;
|
2016-06-06 14:27:39 -07:00
|
|
|
};
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
class AudioRtpReceiver : public ObserverInterface,
|
|
|
|
|
public AudioSourceInterface::AudioObserver,
|
2016-06-14 11:47:14 -07:00
|
|
|
public rtc::RefCountedObject<RtpReceiverInternal>,
|
|
|
|
|
public sigslot::has_slots<> {
|
2015-09-28 16:53:55 -07:00
|
|
|
public:
|
2017-02-25 18:15:09 -08:00
|
|
|
// An SSRC of 0 will create a receiver that will match the first SSRC it
|
|
|
|
|
// sees.
|
|
|
|
|
// TODO(deadbeef): Use rtc::Optional, or have another constructor that
|
|
|
|
|
// doesn't take an SSRC, and make this one DCHECK(ssrc != 0).
|
|
|
|
|
AudioRtpReceiver(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,
|
2016-06-27 16:30:35 -07:00
|
|
|
cricket::VoiceChannel* channel);
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
cricket::MediaType media_type() const override {
|
|
|
|
|
return cricket::MEDIA_TYPE_AUDIO;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
std::string id() const override { return id_; }
|
|
|
|
|
|
2016-05-16 11:40:30 -07:00
|
|
|
RtpParameters GetParameters() const override;
|
|
|
|
|
bool SetParameters(const RtpParameters& parameters) override;
|
|
|
|
|
|
2016-06-06 14:27:39 -07:00
|
|
|
// RtpReceiverInternal implementation.
|
|
|
|
|
void Stop() override;
|
2017-02-25 18:15:09 -08:00
|
|
|
uint32_t ssrc() const override { return ssrc_; }
|
2016-06-06 14:27:39 -07:00
|
|
|
|
2016-06-14 11:47:14 -07:00
|
|
|
void SetObserver(RtpReceiverObserverInterface* observer) override;
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
// Does not take ownership.
|
|
|
|
|
// Should call SetChannel(nullptr) before |channel| is destroyed.
|
|
|
|
|
void SetChannel(cricket::VoiceChannel* channel);
|
2016-06-14 11:47:14 -07:00
|
|
|
|
Reland of Implemented the GetSources() in native code. (patchset #1 id:1 of https://codereview.webrtc.org/2809613002/ )
Reason for revert:
Re-land, reverting did not fix bug.
https://bugs.chromium.org/p/webrtc/issues/detail?id=7465
Original issue's description:
> Revert of Implemented the GetSources() in native code. (patchset #11 id:510001 of https://codereview.webrtc.org/2770233003/ )
>
> Reason for revert:
> Suspected of WebRtcApprtcBrowserTest.MANUAL_WorksOnApprtc breakage, see
>
> https://bugs.chromium.org/p/webrtc/issues/detail?id=7465
>
> Original issue's description:
> > Added the GetSources() to the RtpReceiverInterface and implemented
> > it for the AudioRtpReceiver.
> >
> > This method returns a vector of RtpSource(both CSRC source and SSRC
> > source) which contains the ID of a source, the timestamp, the source
> > type (SSRC or CSRC) and the audio level.
> >
> > The RtpSource objects are buffered and maintained by the
> > RtpReceiver in webrtc/modules/rtp_rtcp/. When the method is called,
> > the info of the contributing source will be pulled along the object
> > chain:
> > AudioRtpReceiver -> VoiceChannel -> WebRtcVoiceMediaChannel ->
> > AudioReceiveStream -> voe::Channel -> RtpRtcp module
> >
> > Spec:https://w3c.github.io/webrtc-pc/archives/20151006/webrtc.html#widl-RTCRtpReceiver-getContributingSources-sequence-RTCRtpContributingSource
> >
> > BUG=chromium:703122
> > TBR=stefan@webrtc.org, danilchap@webrtc.org
> >
> > Review-Url: https://codereview.webrtc.org/2770233003
> > Cr-Commit-Position: refs/heads/master@{#17591}
> > Committed: https://chromium.googlesource.com/external/webrtc/+/292084c3765d9f3ee406ca2ec86eae206b540053
>
> TBR=deadbeef@webrtc.org,solenberg@webrtc.org,hbos@webrtc.org,philipel@webrtc.org,stefan@webrtc.org,danilchap@webrtc.org,zhihuang@webrtc.org
> # Not skipping CQ checks because original CL landed more than 1 days ago.
> BUG=chromium:703122
>
> Review-Url: https://codereview.webrtc.org/2809613002
> Cr-Commit-Position: refs/heads/master@{#17616}
> Committed: https://chromium.googlesource.com/external/webrtc/+/fbcc5cb3869d1370008e40f24fc03ac8fb69c675
TBR=deadbeef@webrtc.org,solenberg@webrtc.org,philipel@webrtc.org,stefan@webrtc.org,danilchap@webrtc.org,zhihuang@webrtc.org,olka@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=chromium:703122
Review-Url: https://codereview.webrtc.org/2810623003
Cr-Commit-Position: refs/heads/master@{#17621}
2017-04-10 07:39:05 -07:00
|
|
|
std::vector<RtpSource> GetSources() const override;
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
private:
|
|
|
|
|
void Reconfigure();
|
2016-06-27 16:30:35 -07:00
|
|
|
void OnFirstPacketReceived(cricket::BaseChannel* channel);
|
2015-09-28 16:53:55 -07:00
|
|
|
|
2015-12-12 01:37:01 +01:00
|
|
|
const std::string id_;
|
|
|
|
|
const uint32_t ssrc_;
|
2016-06-27 16:30:35 -07:00
|
|
|
cricket::VoiceChannel* channel_;
|
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_;
|
2016-06-27 16:30:35 -07:00
|
|
|
double cached_volume_ = 1;
|
|
|
|
|
bool stopped_ = false;
|
2016-06-14 11:47:14 -07:00
|
|
|
RtpReceiverObserverInterface* observer_ = nullptr;
|
|
|
|
|
bool received_first_packet_ = false;
|
2015-09-28 16:53:55 -07:00
|
|
|
};
|
|
|
|
|
|
2016-06-14 11:47:14 -07:00
|
|
|
class VideoRtpReceiver : public rtc::RefCountedObject<RtpReceiverInternal>,
|
|
|
|
|
public sigslot::has_slots<> {
|
2015-09-28 16:53:55 -07:00
|
|
|
public:
|
2017-02-25 18:15:09 -08:00
|
|
|
// An SSRC of 0 will create a receiver that will match the first SSRC it
|
|
|
|
|
// sees.
|
|
|
|
|
VideoRtpReceiver(const std::string& track_id,
|
2016-03-10 18:32:00 +01:00
|
|
|
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,
|
2016-06-27 16:30:35 -07:00
|
|
|
cricket::VideoChannel* channel);
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
cricket::MediaType media_type() const override {
|
|
|
|
|
return cricket::MEDIA_TYPE_VIDEO;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
std::string id() const override { return id_; }
|
|
|
|
|
|
2016-05-16 11:40:30 -07:00
|
|
|
RtpParameters GetParameters() const override;
|
|
|
|
|
bool SetParameters(const RtpParameters& parameters) override;
|
|
|
|
|
|
2016-06-06 14:27:39 -07:00
|
|
|
// RtpReceiverInternal implementation.
|
|
|
|
|
void Stop() override;
|
2017-02-25 18:15:09 -08:00
|
|
|
uint32_t ssrc() const override { return ssrc_; }
|
2016-06-06 14:27:39 -07:00
|
|
|
|
2016-06-14 11:47:14 -07:00
|
|
|
void SetObserver(RtpReceiverObserverInterface* observer) override;
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
// Does not take ownership.
|
|
|
|
|
// Should call SetChannel(nullptr) before |channel| is destroyed.
|
|
|
|
|
void SetChannel(cricket::VideoChannel* channel);
|
2016-06-14 11:47:14 -07:00
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
private:
|
2016-06-27 16:30:35 -07:00
|
|
|
void OnFirstPacketReceived(cricket::BaseChannel* channel);
|
2016-06-14 11:47:14 -07:00
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
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_;
|
2016-06-27 16:30:35 -07:00
|
|
|
cricket::VideoChannel* channel_;
|
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_;
|
2016-06-27 16:30:35 -07:00
|
|
|
bool stopped_ = false;
|
2016-06-14 11:47:14 -07:00
|
|
|
RtpReceiverObserverInterface* observer_ = nullptr;
|
|
|
|
|
bool received_first_packet_ = false;
|
2015-09-28 16:53:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-01-23 04:56:25 -08:00
|
|
|
#endif // WEBRTC_PC_RTPRECEIVER_H_
|