Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: webrtc/media/engine/fakewebrtccall.h

Issue 2388303009: Integrate FlexfecReceiveStream with Call. (Closed)
Patch Set: Rebase. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 221
222 webrtc::VideoSendStream* CreateVideoSendStream( 222 webrtc::VideoSendStream* CreateVideoSendStream(
223 webrtc::VideoSendStream::Config config, 223 webrtc::VideoSendStream::Config config,
224 webrtc::VideoEncoderConfig encoder_config) override; 224 webrtc::VideoEncoderConfig encoder_config) override;
225 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override; 225 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override;
226 226
227 webrtc::VideoReceiveStream* CreateVideoReceiveStream( 227 webrtc::VideoReceiveStream* CreateVideoReceiveStream(
228 webrtc::VideoReceiveStream::Config config) override; 228 webrtc::VideoReceiveStream::Config config) override;
229 void DestroyVideoReceiveStream( 229 void DestroyVideoReceiveStream(
230 webrtc::VideoReceiveStream* receive_stream) override; 230 webrtc::VideoReceiveStream* receive_stream) override;
231
232 webrtc::FlexfecReceiveStream* CreateFlexfecReceiveStream(
233 webrtc::FlexfecReceiveStream::Config config) override;
234 void DestroyFlexfecReceiveStream(
235 webrtc::FlexfecReceiveStream* receive_stream) override;
236
231 webrtc::PacketReceiver* Receiver() override; 237 webrtc::PacketReceiver* Receiver() override;
232 238
233 DeliveryStatus DeliverPacket(webrtc::MediaType media_type, 239 DeliveryStatus DeliverPacket(webrtc::MediaType media_type,
234 const uint8_t* packet, 240 const uint8_t* packet,
235 size_t length, 241 size_t length,
236 const webrtc::PacketTime& packet_time) override; 242 const webrtc::PacketTime& packet_time) override;
237 243
238 webrtc::Call::Stats GetStats() const override; 244 webrtc::Call::Stats GetStats() const override;
239 245
240 void SetBitrateConfig( 246 void SetBitrateConfig(
(...skipping 14 matching lines...) Expand all
255 std::vector<FakeAudioSendStream*> audio_send_streams_; 261 std::vector<FakeAudioSendStream*> audio_send_streams_;
256 std::vector<FakeVideoReceiveStream*> video_receive_streams_; 262 std::vector<FakeVideoReceiveStream*> video_receive_streams_;
257 std::vector<FakeAudioReceiveStream*> audio_receive_streams_; 263 std::vector<FakeAudioReceiveStream*> audio_receive_streams_;
258 264
259 int num_created_send_streams_; 265 int num_created_send_streams_;
260 int num_created_receive_streams_; 266 int num_created_receive_streams_;
261 }; 267 };
262 268
263 } // namespace cricket 269 } // namespace cricket
264 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ 270 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698