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

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

Issue 2997393002: Move rtp dump writer from quality test to test transport (Closed)
Patch Set: Remove forgotten temp code Created 3 years, 3 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 #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 <map>
14 #include <memory>
15
13 #include "webrtc/call/call.h" 16 #include "webrtc/call/call.h"
14 #include "webrtc/test/direct_transport.h" 17 #include "webrtc/test/direct_transport.h"
15 #include "webrtc/test/fake_network_pipe.h" 18 #include "webrtc/test/fake_network_pipe.h"
19 #include "webrtc/test/rtp_file_writer.h"
16 #include "webrtc/test/single_threaded_task_queue.h" 20 #include "webrtc/test/single_threaded_task_queue.h"
17 21
18 #include <map>
19
20 namespace webrtc { 22 namespace webrtc {
21 23
22 namespace test { 24 namespace test {
23 25
24 class LayerFilteringTransport : public test::DirectTransport { 26 class LayerFilteringTransport : public test::DirectTransport {
25 public: 27 public:
26 LayerFilteringTransport(SingleThreadedTaskQueueForTesting* task_queue, 28 LayerFilteringTransport(SingleThreadedTaskQueueForTesting* task_queue,
27 const FakeNetworkPipe::Config& config, 29 const FakeNetworkPipe::Config& config,
28 Call* send_call, 30 Call* send_call,
29 uint8_t vp8_video_payload_type, 31 uint8_t vp8_video_payload_type,
30 uint8_t vp9_video_payload_type, 32 uint8_t vp9_video_payload_type,
31 int selected_tl, 33 int selected_tl,
32 int selected_sl, 34 int selected_sl,
33 const std::map<uint8_t, MediaType>& payload_type_map); 35 const std::map<uint8_t, MediaType>& payload_type_map,
36 std::unique_ptr<test::RtpFileWriter> rtp_file_writer);
34 bool DiscardedLastPacket() const; 37 bool DiscardedLastPacket() const;
35 bool SendRtp(const uint8_t* data, 38 bool SendRtp(const uint8_t* data,
36 size_t length, 39 size_t length,
37 const PacketOptions& options) override; 40 const PacketOptions& options) override;
38 41
39 private: 42 private:
40 // Used to distinguish between VP8 and VP9. 43 // Used to distinguish between VP8 and VP9.
41 const uint8_t vp8_video_payload_type_; 44 const uint8_t vp8_video_payload_type_;
42 const uint8_t vp9_video_payload_type_; 45 const uint8_t vp9_video_payload_type_;
43 // Discard or invalidate all temporal/spatial layers with id greater than the 46 // Discard or invalidate all temporal/spatial layers with id greater than the
44 // selected one. -1 to disable filtering. 47 // selected one. -1 to disable filtering.
45 const int selected_tl_; 48 const int selected_tl_;
46 const int selected_sl_; 49 const int selected_sl_;
47 bool discarded_last_packet_; 50 bool discarded_last_packet_;
51
52 const int64_t start_ms_;
53 std::unique_ptr<test::RtpFileWriter> rtp_file_writer_;
48 }; 54 };
49 55
50 } // namespace test 56 } // namespace test
51 } // namespace webrtc 57 } // namespace webrtc
52 58
53 #endif // WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_ 59 #endif // WEBRTC_TEST_LAYER_FILTERING_TRANSPORT_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/layer_filtering_transport.cc » ('j') | webrtc/test/layer_filtering_transport.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698