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

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

Issue 2967913002: Get rid of unnecessary cast of FlexfecReceiveStreamImpl to FlexfecReceiveStream (Closed)
Patch Set: Rebase + remove empty line. Created 3 years, 4 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
« no previous file with comments | « webrtc/call/flexfec_receive_stream_impl.cc ('k') | no next file » | 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 webrtc::VideoReceiveStream::Config config_; 210 webrtc::VideoReceiveStream::Config config_;
211 bool receiving_; 211 bool receiving_;
212 webrtc::VideoReceiveStream::Stats stats_; 212 webrtc::VideoReceiveStream::Stats stats_;
213 }; 213 };
214 214
215 class FakeFlexfecReceiveStream final : public webrtc::FlexfecReceiveStream { 215 class FakeFlexfecReceiveStream final : public webrtc::FlexfecReceiveStream {
216 public: 216 public:
217 explicit FakeFlexfecReceiveStream( 217 explicit FakeFlexfecReceiveStream(
218 const webrtc::FlexfecReceiveStream::Config& config); 218 const webrtc::FlexfecReceiveStream::Config& config);
219 219
220 const webrtc::FlexfecReceiveStream::Config& GetConfig() const; 220 const webrtc::FlexfecReceiveStream::Config& GetConfig() const override;
221 221
222 private: 222 private:
223 // webrtc::FlexfecReceiveStream implementation. 223 // webrtc::FlexfecReceiveStream implementation.
224 void Start() override; 224 void Start() override;
225 void Stop() override; 225 void Stop() override;
226 226
227 webrtc::FlexfecReceiveStream::Stats GetStats() const override; 227 webrtc::FlexfecReceiveStream::Stats GetStats() const override;
228 228
229 webrtc::FlexfecReceiveStream::Config config_; 229 webrtc::FlexfecReceiveStream::Config config_;
230 bool receiving_; 230 bool receiving_;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 320
321 int num_created_send_streams_; 321 int num_created_send_streams_;
322 int num_created_receive_streams_; 322 int num_created_receive_streams_;
323 323
324 int audio_transport_overhead_; 324 int audio_transport_overhead_;
325 int video_transport_overhead_; 325 int video_transport_overhead_;
326 }; 326 };
327 327
328 } // namespace cricket 328 } // namespace cricket
329 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_ 329 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCCALL_H_
OLDNEW
« no previous file with comments | « webrtc/call/flexfec_receive_stream_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698