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

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

Issue 2535173008: Clean up FlexfecReceiveStream ctor signatures. (CL0) (Closed)
Patch Set: Rebase. Created 4 years 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
« no previous file with comments | « webrtc/call/flexfec_receive_stream.cc ('k') | webrtc/media/engine/fakewebrtccall.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 webrtc::VideoSendStream::Config config, 258 webrtc::VideoSendStream::Config config,
259 webrtc::VideoEncoderConfig encoder_config) override; 259 webrtc::VideoEncoderConfig encoder_config) override;
260 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override; 260 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override;
261 261
262 webrtc::VideoReceiveStream* CreateVideoReceiveStream( 262 webrtc::VideoReceiveStream* CreateVideoReceiveStream(
263 webrtc::VideoReceiveStream::Config config) override; 263 webrtc::VideoReceiveStream::Config config) override;
264 void DestroyVideoReceiveStream( 264 void DestroyVideoReceiveStream(
265 webrtc::VideoReceiveStream* receive_stream) override; 265 webrtc::VideoReceiveStream* receive_stream) override;
266 266
267 webrtc::FlexfecReceiveStream* CreateFlexfecReceiveStream( 267 webrtc::FlexfecReceiveStream* CreateFlexfecReceiveStream(
268 webrtc::FlexfecReceiveStream::Config config) override; 268 const webrtc::FlexfecReceiveStream::Config& config) override;
269 void DestroyFlexfecReceiveStream( 269 void DestroyFlexfecReceiveStream(
270 webrtc::FlexfecReceiveStream* receive_stream) override; 270 webrtc::FlexfecReceiveStream* receive_stream) override;
271 271
272 webrtc::PacketReceiver* Receiver() override; 272 webrtc::PacketReceiver* Receiver() override;
273 273
274 DeliveryStatus DeliverPacket(webrtc::MediaType media_type, 274 DeliveryStatus DeliverPacket(webrtc::MediaType media_type,
275 const uint8_t* packet, 275 const uint8_t* packet,
276 size_t length, 276 size_t length,
277 const webrtc::PacketTime& packet_time) override; 277 const webrtc::PacketTime& packet_time) override;
278 278
(...skipping 23 matching lines...) Expand all
302 302
303 int num_created_send_streams_; 303 int num_created_send_streams_;
304 int num_created_receive_streams_; 304 int num_created_receive_streams_;
305 305
306 int audio_transport_overhead_; 306 int audio_transport_overhead_;
307 int video_transport_overhead_; 307 int video_transport_overhead_;
308 }; 308 };
309 309
310 } // namespace cricket 310 } // namespace cricket
311 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ 311 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_
OLDNEW
« no previous file with comments | « webrtc/call/flexfec_receive_stream.cc ('k') | webrtc/media/engine/fakewebrtccall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698