| 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 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H
_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H
_ |
| 12 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H
_ | 12 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H
_ |
| 13 | 13 |
| 14 #include <math.h> | 14 #include <math.h> |
| 15 | 15 |
| 16 #include <limits> | 16 #include <limits> |
| 17 #include <memory> | 17 #include <memory> |
| 18 #include <string> | 18 #include <string> |
| 19 #include <utility> | 19 #include <utility> |
| 20 | 20 |
| 21 #if defined(WEBRTC_ANDROID) | 21 #if defined(WEBRTC_ANDROID) |
| 22 #include "webrtc/modules/video_coding/codecs/test/android_test_initializer.h" | 22 #include "webrtc/modules/video_coding/codecs/test/android_test_initializer.h" |
| 23 #include "webrtc/sdk/android/src/jni/androidmediadecoder_jni.h" | 23 #include "webrtc/sdk/android/src/jni/androidmediadecoder_jni.h" |
| 24 #include "webrtc/sdk/android/src/jni/androidmediaencoder_jni.h" | 24 #include "webrtc/sdk/android/src/jni/androidmediaencoder_jni.h" |
| 25 #elif defined(WEBRTC_IOS) | 25 #elif defined(WEBRTC_IOS) |
| 26 #include "webrtc/sdk/objc/Framework/Classes/VideoToolbox/decoder.h" | 26 #include "webrtc/sdk/objc/Framework/Classes/VideoToolbox/decoder.h" |
| 27 #include "webrtc/sdk/objc/Framework/Classes/VideoToolbox/encoder.h" | 27 #include "webrtc/sdk/objc/Framework/Classes/VideoToolbox/encoder.h" |
| 28 #endif | 28 #endif |
| 29 | 29 |
| 30 #include "webrtc/base/checks.h" |
| 31 #include "webrtc/base/file.h" |
| 32 #include "webrtc/base/logging.h" |
| 30 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" | 33 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" |
| 31 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" | 34 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" |
| 32 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" | 35 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" |
| 33 #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" | 36 #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" |
| 34 #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" | 37 #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" |
| 35 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 38 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
| 36 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_common_types.h" | 39 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_common_types.h" |
| 37 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" | 40 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" |
| 38 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 41 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 39 #include "webrtc/modules/video_coding/include/video_coding.h" | 42 #include "webrtc/modules/video_coding/include/video_coding.h" |
| 40 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" | 43 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" |
| 41 #include "webrtc/rtc_base/checks.h" | |
| 42 #include "webrtc/rtc_base/file.h" | |
| 43 #include "webrtc/rtc_base/logging.h" | |
| 44 #include "webrtc/test/gtest.h" | 44 #include "webrtc/test/gtest.h" |
| 45 #include "webrtc/test/testsupport/fileutils.h" | 45 #include "webrtc/test/testsupport/fileutils.h" |
| 46 #include "webrtc/test/testsupport/frame_reader.h" | 46 #include "webrtc/test/testsupport/frame_reader.h" |
| 47 #include "webrtc/test/testsupport/frame_writer.h" | 47 #include "webrtc/test/testsupport/frame_writer.h" |
| 48 #include "webrtc/test/testsupport/metrics/video_metrics.h" | 48 #include "webrtc/test/testsupport/metrics/video_metrics.h" |
| 49 #include "webrtc/test/testsupport/packet_reader.h" | 49 #include "webrtc/test/testsupport/packet_reader.h" |
| 50 #include "webrtc/typedefs.h" | 50 #include "webrtc/typedefs.h" |
| 51 | 51 |
| 52 namespace webrtc { | 52 namespace webrtc { |
| 53 namespace test { | 53 namespace test { |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 int start_frame_rate_; | 792 int start_frame_rate_; |
| 793 | 793 |
| 794 // Codec and network settings. | 794 // Codec and network settings. |
| 795 int num_temporal_layers_; | 795 int num_temporal_layers_; |
| 796 }; | 796 }; |
| 797 | 797 |
| 798 } // namespace test | 798 } // namespace test |
| 799 } // namespace webrtc | 799 } // namespace webrtc |
| 800 | 800 |
| 801 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTES
T_H_ | 801 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTES
T_H_ |
| OLD | NEW |