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/checks.h" | 17 #include "webrtc/base/checks.h" |
18 #include "webrtc/base/scoped_ptr.h" | 18 #include "webrtc/base/scoped_ptr.h" |
19 #include "webrtc/common.h" | 19 #include "webrtc/common.h" |
20 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 20 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
21 #include "webrtc/modules/video_coding/codecs/interface/mock/mock_video_codec_int
erface.h" | 21 #include "webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h" |
22 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 22 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
23 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" | 23 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" |
24 #include "webrtc/video_frame.h" | 24 #include "webrtc/video_frame.h" |
25 | 25 |
26 #include "gtest/gtest.h" | 26 #include "gtest/gtest.h" |
27 | 27 |
28 using ::testing::_; | 28 using ::testing::_; |
29 using ::testing::AllOf; | 29 using ::testing::AllOf; |
30 using ::testing::Field; | 30 using ::testing::Field; |
31 using ::testing::Return; | 31 using ::testing::Return; |
(...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 rtc::scoped_ptr<VP8Decoder> decoder_; | 996 rtc::scoped_ptr<VP8Decoder> decoder_; |
997 MockDecodedImageCallback decoder_callback_; | 997 MockDecodedImageCallback decoder_callback_; |
998 VideoCodec settings_; | 998 VideoCodec settings_; |
999 VideoFrame input_frame_; | 999 VideoFrame input_frame_; |
1000 }; | 1000 }; |
1001 | 1001 |
1002 } // namespace testing | 1002 } // namespace testing |
1003 } // namespace webrtc | 1003 } // namespace webrtc |
1004 | 1004 |
1005 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ | 1005 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ |
OLD | NEW |