blob: 1e5272402026296e04c4aa2e807f9d9f3faaa027 [file] [log] [blame]
Fredrik Solenberg23fba1f2015-04-29 15:24:01 +02001/*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Peter Boström5c389d32015-09-25 13:58:30 +020011#ifndef WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_
12#define WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_
Fredrik Solenberg23fba1f2015-04-29 15:24:01 +020013
14#include "webrtc/audio_receive_stream.h"
15#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
16
17namespace webrtc {
18
19class RemoteBitrateEstimator;
20
21namespace internal {
22
23class AudioReceiveStream : public webrtc::AudioReceiveStream {
24 public:
25 AudioReceiveStream(RemoteBitrateEstimator* remote_bitrate_estimator,
26 const webrtc::AudioReceiveStream::Config& config);
pbosa2f30de2015-10-15 05:22:13 -070027 ~AudioReceiveStream() override;
Fredrik Solenberg23fba1f2015-04-29 15:24:01 +020028
Jelena Marusiccd670222015-07-16 09:30:09 +020029 // webrtc::ReceiveStream implementation.
30 void Start() override;
31 void Stop() override;
32 void SignalNetworkState(NetworkState state) override;
33 bool DeliverRtcp(const uint8_t* packet, size_t length) override;
stefan68786d22015-09-08 05:36:15 -070034 bool DeliverRtp(const uint8_t* packet,
35 size_t length,
36 const PacketTime& packet_time) override;
Fredrik Solenberg04f49312015-06-08 13:04:56 +020037
Jelena Marusiccd670222015-07-16 09:30:09 +020038 // webrtc::AudioReceiveStream implementation.
39 webrtc::AudioReceiveStream::Stats GetStats() const override;
Fredrik Solenberg23fba1f2015-04-29 15:24:01 +020040
pbosa2f30de2015-10-15 05:22:13 -070041 const webrtc::AudioReceiveStream::Config& config() const;
Fredrik Solenberg23fba1f2015-04-29 15:24:01 +020042
43 private:
44 RemoteBitrateEstimator* const remote_bitrate_estimator_;
45 const webrtc::AudioReceiveStream::Config config_;
46 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_;
47};
48} // namespace internal
49} // namespace webrtc
50
Peter Boström5c389d32015-09-25 13:58:30 +020051#endif // WEBRTC_AUDIO_AUDIO_RECEIVE_STREAM_H_