| 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/test/gtest.h" | |
| 14 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 13 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 15 #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" |
| 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() |
| (...skipping 258 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 |