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

Side by Side Diff: webrtc/test/layer_filtering_transport.h

Issue 1376673004: Add a PacketOptions struct to webrtc::Transport. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Comment added Created 5 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
« no previous file with comments | « webrtc/test/direct_transport.cc ('k') | webrtc/test/layer_filtering_transport.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 #ifndef WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_ 10 #ifndef WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_
11 #define WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_ 11 #define WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_
12 12
13 #include "webrtc/test/direct_transport.h" 13 #include "webrtc/test/direct_transport.h"
14 #include "webrtc/test/fake_network_pipe.h" 14 #include "webrtc/test/fake_network_pipe.h"
15 15
16 namespace webrtc { 16 namespace webrtc {
17 17
18 namespace test { 18 namespace test {
19 19
20 class LayerFilteringTransport : public test::DirectTransport { 20 class LayerFilteringTransport : public test::DirectTransport {
21 public: 21 public:
22 LayerFilteringTransport(const FakeNetworkPipe::Config& config, 22 LayerFilteringTransport(const FakeNetworkPipe::Config& config,
23 uint8_t vp8_video_payload_type, 23 uint8_t vp8_video_payload_type,
24 uint8_t vp9_video_payload_type, 24 uint8_t vp9_video_payload_type,
25 uint8_t tl_discard_threshold, 25 uint8_t tl_discard_threshold,
26 uint8_t sl_discard_threshold); 26 uint8_t sl_discard_threshold);
27 bool SendRtp(const uint8_t* data, size_t length) override; 27 bool SendRtp(const uint8_t* data,
28 size_t length,
29 const PacketOptions& options) override;
28 30
29 private: 31 private:
30 // Used to distinguish between VP8 and VP9. 32 // Used to distinguish between VP8 and VP9.
31 const uint8_t vp8_video_payload_type_; 33 const uint8_t vp8_video_payload_type_;
32 const uint8_t vp9_video_payload_type_; 34 const uint8_t vp9_video_payload_type_;
33 // Discard all temporal/spatial layers with id greater or equal the 35 // Discard all temporal/spatial layers with id greater or equal the
34 // threshold. 0 to disable. 36 // threshold. 0 to disable.
35 const uint8_t tl_discard_threshold_; 37 const uint8_t tl_discard_threshold_;
36 const uint8_t sl_discard_threshold_; 38 const uint8_t sl_discard_threshold_;
37 uint16_t current_seq_num_; 39 uint16_t current_seq_num_;
38 }; 40 };
39 41
40 } // namespace test 42 } // namespace test
41 } // namespace webrtc 43 } // namespace webrtc
42 44
43 #endif // WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_ 45 #endif // WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_
OLDNEW
« no previous file with comments | « webrtc/test/direct_transport.cc ('k') | webrtc/test/layer_filtering_transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698