Chromium Code Reviews| Index: webrtc/video/full_stack.h |
| diff --git a/webrtc/video/full_stack.h b/webrtc/video/full_stack.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c125ca49e679d743ca5cb5109fb9f4055d3ed87a |
| --- /dev/null |
| +++ b/webrtc/video/full_stack.h |
| @@ -0,0 +1,46 @@ |
| +/* |
| + * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| + * |
| + * Use of this source code is governed by a BSD-style license |
| + * that can be found in the LICENSE file in the root of the source |
| + * tree. An additional intellectual property rights grant can be found |
| + * in the file PATENTS. All contributing project authors may |
| + * be found in the AUTHORS file in the root of the source tree. |
| + */ |
| +#ifndef WEBRTC_VIDEO_FULL_STACK_H_ |
| +#define WEBRTC_VIDEO_FULL_STACK_H_ |
| + |
| +#include <string> |
| + |
| +#include "webrtc/test/call_test.h" |
| +#include "webrtc/test/direct_transport.h" |
| + |
| +namespace webrtc { |
| + |
| +struct FullStackTestParams { |
| + const char* test_label; |
| + struct { |
| + const char* name; |
| + size_t width, height; |
| + int fps; |
| + } clip; |
| + bool screenshare; |
| + int min_bitrate_bps; |
| + int target_bitrate_bps; |
| + int max_bitrate_bps; |
| + double avg_psnr_threshold; |
| + double avg_ssim_threshold; |
| + int test_durations_secs; |
| + std::string codec; |
| + FakeNetworkPipe::Config link; |
| + std::string graph_data_filename; |
|
sprang_webrtc
2015/08/19 13:33:37
Would like a more descriptive name. stats_output_f
ivica
2015/08/20 13:25:59
Done.
|
| +}; |
| + |
| +class FullStackTest : public test::CallTest { |
| + protected: |
| + void RunTest(const FullStackTestParams& params); |
| +}; |
| + |
| +} // namespace webrtc |
| + |
| +#endif // WEBRTC_VIDEO_FULL_STACK_H_ |