| 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 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
| 14 #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" | 14 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 15 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" | 15 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" |
| 16 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h" | 16 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h" |
| 17 #include "webrtc/modules/video_coding/codecs/vp8/vp8_factory.h" | 17 #include "webrtc/modules/video_coding/codecs/vp8/vp8_factory.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 namespace testing { | 20 namespace testing { |
| 21 | 21 |
| 22 static VP8Encoder* CreateTestEncoderAdapter() { | 22 static VP8Encoder* CreateTestEncoderAdapter() { |
| 23 VP8EncoderFactoryConfig::set_use_simulcast_adapter(true); | 23 VP8EncoderFactoryConfig::set_use_simulcast_adapter(true); |
| 24 return VP8Encoder::Create(); | 24 return VP8Encoder::Create(); |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 EXPECT_EQ(0, adapter_->InitEncode(&codec_, 1, 1200)); | 415 EXPECT_EQ(0, adapter_->InitEncode(&codec_, 1, 1200)); |
| 416 adapter_->RegisterEncodeCompleteCallback(this); | 416 adapter_->RegisterEncodeCompleteCallback(this); |
| 417 ASSERT_EQ(3u, helper_->factory()->encoders().size()); | 417 ASSERT_EQ(3u, helper_->factory()->encoders().size()); |
| 418 for (MockVideoEncoder* encoder : helper_->factory()->encoders()) | 418 for (MockVideoEncoder* encoder : helper_->factory()->encoders()) |
| 419 encoder->set_supports_native_handle(true); | 419 encoder->set_supports_native_handle(true); |
| 420 EXPECT_FALSE(adapter_->SupportsNativeHandle()); | 420 EXPECT_FALSE(adapter_->SupportsNativeHandle()); |
| 421 } | 421 } |
| 422 | 422 |
| 423 } // namespace testing | 423 } // namespace testing |
| 424 } // namespace webrtc | 424 } // namespace webrtc |
| OLD | NEW |