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/h264_video_toolbox_decoder.h" |
27 #include "webrtc/sdk/objc/Framework/Classes/VideoToolbox/encoder.h" | 27 #include "webrtc/sdk/objc/Framework/Classes/h264_video_toolbox_encoder.h" |
28 #endif | 28 #endif |
29 | 29 |
30 #include "webrtc/base/checks.h" | 30 #include "webrtc/base/checks.h" |
31 #include "webrtc/base/file.h" | 31 #include "webrtc/base/file.h" |
32 #include "webrtc/base/logging.h" | 32 #include "webrtc/base/logging.h" |
33 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" | 33 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" |
34 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" | 34 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" |
35 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" | 35 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" |
36 #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" | 36 #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" |
37 #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" | 37 #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 | 817 |
818 // Codec and network settings. | 818 // Codec and network settings. |
819 float packet_loss_probability_; | 819 float packet_loss_probability_; |
820 int num_temporal_layers_; | 820 int num_temporal_layers_; |
821 }; | 821 }; |
822 | 822 |
823 } // namespace test | 823 } // namespace test |
824 } // namespace webrtc | 824 } // namespace webrtc |
825 | 825 |
826 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTES
T_H_ | 826 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTES
T_H_ |
OLD | NEW |