| 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 <memory> | 11 #include <memory> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "webrtc/test/gmock.h" |
| 15 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 15 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 16 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" | 16 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" |
| 17 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h" | 17 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 namespace testing { | 20 namespace testing { |
| 21 | 21 |
| 22 class TestSimulcastEncoderAdapter : public TestVp8Simulcast { | 22 class TestSimulcastEncoderAdapter : public TestVp8Simulcast { |
| 23 public: | 23 public: |
| 24 TestSimulcastEncoderAdapter() | 24 TestSimulcastEncoderAdapter() |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 kDefaultWidth, kDefaultHeight, kDefaultWidth, half_width, half_width); | 540 kDefaultWidth, kDefaultHeight, kDefaultWidth, half_width, half_width); |
| 541 input_buffer->InitializeData(); | 541 input_buffer->InitializeData(); |
| 542 VideoFrame input_frame(input_buffer, 0, 0, webrtc::kVideoRotation_0); | 542 VideoFrame input_frame(input_buffer, 0, 0, webrtc::kVideoRotation_0); |
| 543 std::vector<FrameType> frame_types(3, kVideoFrameKey); | 543 std::vector<FrameType> frame_types(3, kVideoFrameKey); |
| 544 EXPECT_EQ(WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE, | 544 EXPECT_EQ(WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE, |
| 545 adapter_->Encode(input_frame, nullptr, &frame_types)); | 545 adapter_->Encode(input_frame, nullptr, &frame_types)); |
| 546 } | 546 } |
| 547 | 547 |
| 548 } // namespace testing | 548 } // namespace testing |
| 549 } // namespace webrtc | 549 } // namespace webrtc |
| OLD | NEW |