OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 "webrtc/video_encoder.h" | 11 #include "webrtc/video_encoder.h" |
12 | 12 |
13 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 13 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
14 #include "webrtc/modules/video_coding/include/video_error_codes.h" | 14 #include "webrtc/modules/video_coding/include/video_error_codes.h" |
15 #include "webrtc/test/gtest.h" | 15 #include "webrtc/test/gtest.h" |
16 | 16 |
17 namespace webrtc { | 17 namespace webrtc { |
18 | 18 |
19 const int kWidth = 320; | 19 const int kWidth = 320; |
20 const int kHeight = 240; | 20 const int kHeight = 240; |
21 const size_t kMaxPayloadSize = 800; | 21 const size_t kMaxPayloadSize = 800; |
22 | 22 |
23 class VideoEncoderSoftwareFallbackWrapperTest : public ::testing::Test { | 23 class VideoEncoderSoftwareFallbackWrapperTest : public ::testing::Test { |
24 protected: | 24 protected: |
25 VideoEncoderSoftwareFallbackWrapperTest() | 25 VideoEncoderSoftwareFallbackWrapperTest() |
26 : fallback_wrapper_(kVideoCodecVP8, &fake_encoder_) {} | 26 : fallback_wrapper_(cricket::VideoCodec("VP8"), &fake_encoder_) {} |
27 | 27 |
28 class CountingFakeEncoder : public VideoEncoder { | 28 class CountingFakeEncoder : public VideoEncoder { |
29 public: | 29 public: |
30 int32_t InitEncode(const VideoCodec* codec_settings, | 30 int32_t InitEncode(const VideoCodec* codec_settings, |
31 int32_t number_of_cores, | 31 int32_t number_of_cores, |
32 size_t max_payload_size) override { | 32 size_t max_payload_size) override { |
33 ++init_encode_count_; | 33 ++init_encode_count_; |
34 return init_encode_return_code_; | 34 return init_encode_return_code_; |
35 } | 35 } |
36 int32_t Encode(const VideoFrame& frame, | 36 int32_t Encode(const VideoFrame& frame, |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 | 284 |
285 TEST_F(VideoEncoderSoftwareFallbackWrapperTest, | 285 TEST_F(VideoEncoderSoftwareFallbackWrapperTest, |
286 ReportsFallbackImplementationName) { | 286 ReportsFallbackImplementationName) { |
287 UtilizeFallbackEncoder(); | 287 UtilizeFallbackEncoder(); |
288 // Hard coded expected value since libvpx is the software implementation name | 288 // Hard coded expected value since libvpx is the software implementation name |
289 // for VP8. Change accordingly if the underlying implementation does. | 289 // for VP8. Change accordingly if the underlying implementation does. |
290 CheckLastEncoderName("libvpx"); | 290 CheckLastEncoderName("libvpx"); |
291 } | 291 } |
292 | 292 |
293 } // namespace webrtc | 293 } // namespace webrtc |
OLD | NEW |