OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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_VP8_SIMULCAST_UNITTEST_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ |
12 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ | 12 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ |
13 | 13 |
14 #include <algorithm> | 14 #include <algorithm> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "webrtc/base/scoped_ptr.h" | 17 #include "webrtc/base/scoped_ptr.h" |
18 #include "webrtc/common.h" | 18 #include "webrtc/common.h" |
19 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 19 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
20 #include "webrtc/experiments.h" | |
21 #include "webrtc/modules/video_coding/codecs/interface/mock/mock_video_codec_int
erface.h" | 20 #include "webrtc/modules/video_coding/codecs/interface/mock/mock_video_codec_int
erface.h" |
22 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 21 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
23 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" | 22 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" |
24 #include "webrtc/video_frame.h" | 23 #include "webrtc/video_frame.h" |
25 | 24 |
26 #include "gtest/gtest.h" | 25 #include "gtest/gtest.h" |
27 | 26 |
28 using ::testing::_; | 27 using ::testing::_; |
29 using ::testing::AllOf; | 28 using ::testing::AllOf; |
30 using ::testing::Field; | 29 using ::testing::Field; |
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 rtc::scoped_ptr<VP8Decoder> decoder_; | 997 rtc::scoped_ptr<VP8Decoder> decoder_; |
999 MockDecodedImageCallback decoder_callback_; | 998 MockDecodedImageCallback decoder_callback_; |
1000 VideoCodec settings_; | 999 VideoCodec settings_; |
1001 VideoFrame input_frame_; | 1000 VideoFrame input_frame_; |
1002 }; | 1001 }; |
1003 | 1002 |
1004 } // namespace testing | 1003 } // namespace testing |
1005 } // namespace webrtc | 1004 } // namespace webrtc |
1006 | 1005 |
1007 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ | 1006 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ |
OLD | NEW |