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/base/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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 memset(input_frame.video_frame_buffer()->MutableDataV(), 0, | 546 memset(input_frame.video_frame_buffer()->MutableDataV(), 0, |
547 input_frame.allocated_size(kVPlane)); | 547 input_frame.allocated_size(kVPlane)); |
548 | 548 |
549 std::vector<FrameType> frame_types(3, kVideoFrameKey); | 549 std::vector<FrameType> frame_types(3, kVideoFrameKey); |
550 EXPECT_EQ(WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE, | 550 EXPECT_EQ(WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE, |
551 adapter_->Encode(input_frame, nullptr, &frame_types)); | 551 adapter_->Encode(input_frame, nullptr, &frame_types)); |
552 } | 552 } |
553 | 553 |
554 } // namespace testing | 554 } // namespace testing |
555 } // namespace webrtc | 555 } // namespace webrtc |
OLD | NEW |