OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
11 #include <math.h> | 11 #include <math.h> |
12 | 12 |
13 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" | 13 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" |
14 #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" | 14 #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" |
15 #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" | 15 #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" |
16 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 16 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
17 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_common_types.h" | 17 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_common_types.h" |
18 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" | |
19 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" | 18 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" |
20 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 19 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
21 #include "webrtc/modules/video_coding/include/video_coding.h" | 20 #include "webrtc/modules/video_coding/include/video_coding.h" |
22 #include "webrtc/test/gtest.h" | 21 #include "webrtc/test/gtest.h" |
23 #include "webrtc/test/testsupport/fileutils.h" | 22 #include "webrtc/test/testsupport/fileutils.h" |
24 #include "webrtc/test/testsupport/frame_reader.h" | 23 #include "webrtc/test/testsupport/frame_reader.h" |
25 #include "webrtc/test/testsupport/frame_writer.h" | 24 #include "webrtc/test/testsupport/frame_writer.h" |
26 #include "webrtc/test/testsupport/metrics/video_metrics.h" | 25 #include "webrtc/test/testsupport/metrics/video_metrics.h" |
27 #include "webrtc/test/testsupport/packet_reader.h" | 26 #include "webrtc/test/testsupport/packet_reader.h" |
28 #include "webrtc/typedefs.h" | 27 #include "webrtc/typedefs.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 VideoEncoder* encoder_; | 106 VideoEncoder* encoder_; |
108 VideoDecoder* decoder_; | 107 VideoDecoder* decoder_; |
109 webrtc::test::FrameReader* frame_reader_; | 108 webrtc::test::FrameReader* frame_reader_; |
110 webrtc::test::FrameWriter* frame_writer_; | 109 webrtc::test::FrameWriter* frame_writer_; |
111 webrtc::test::PacketReader packet_reader_; | 110 webrtc::test::PacketReader packet_reader_; |
112 webrtc::test::PacketManipulator* packet_manipulator_; | 111 webrtc::test::PacketManipulator* packet_manipulator_; |
113 webrtc::test::Stats stats_; | 112 webrtc::test::Stats stats_; |
114 webrtc::test::TestConfig config_; | 113 webrtc::test::TestConfig config_; |
115 VideoCodec codec_settings_; | 114 VideoCodec codec_settings_; |
116 webrtc::test::VideoProcessor* processor_; | 115 webrtc::test::VideoProcessor* processor_; |
117 TemporalLayersFactory tl_factory_; | |
118 | 116 |
119 // Quantities defined/updated for every encoder rate update. | 117 // Quantities defined/updated for every encoder rate update. |
120 // Some quantities defined per temporal layer (at most 3 layers in this test). | 118 // Some quantities defined per temporal layer (at most 3 layers in this test). |
121 int num_frames_per_update_[3]; | 119 int num_frames_per_update_[3]; |
122 float sum_frame_size_mismatch_[3]; | 120 float sum_frame_size_mismatch_[3]; |
123 float sum_encoded_frame_size_[3]; | 121 float sum_encoded_frame_size_[3]; |
124 float encoding_bitrate_[3]; | 122 float encoding_bitrate_[3]; |
125 float per_frame_bandwidth_[3]; | 123 float per_frame_bandwidth_[3]; |
126 float bit_rate_layer_[3]; | 124 float bit_rate_layer_[3]; |
127 float frame_rate_layer_[3]; | 125 float frame_rate_layer_[3]; |
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 QualityMetrics quality_metrics; | 999 QualityMetrics quality_metrics; |
1002 SetQualityMetrics(&quality_metrics, 32.5, 30.0, 0.85, 0.80); | 1000 SetQualityMetrics(&quality_metrics, 32.5, 30.0, 0.85, 0.80); |
1003 // Metrics for rate control. | 1001 // Metrics for rate control. |
1004 RateControlMetrics rc_metrics[2]; | 1002 RateControlMetrics rc_metrics[2]; |
1005 SetRateControlMetrics(rc_metrics, 0, 0, 20, 30, 10, 10, 0, 1); | 1003 SetRateControlMetrics(rc_metrics, 0, 0, 20, 30, 10, 10, 0, 1); |
1006 SetRateControlMetrics(rc_metrics, 1, 0, 0, 30, 15, 10, 0, 0); | 1004 SetRateControlMetrics(rc_metrics, 1, 0, 0, 30, 15, 10, 0, 0); |
1007 ProcessFramesAndVerify(quality_metrics, rate_profile, process_settings, | 1005 ProcessFramesAndVerify(quality_metrics, rate_profile, process_settings, |
1008 rc_metrics); | 1006 rc_metrics); |
1009 } | 1007 } |
1010 } // namespace webrtc | 1008 } // namespace webrtc |
OLD | NEW |