| 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/media/engine/videoencodersoftwarefallbackwrapper.h" |
| 12 |
| 13 #include <utility> |
| 12 | 14 |
| 13 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 15 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 14 #include "webrtc/modules/video_coding/include/video_error_codes.h" | 16 #include "webrtc/modules/video_coding/include/video_error_codes.h" |
| 15 #include "webrtc/test/gtest.h" | 17 #include "webrtc/test/gtest.h" |
| 16 | 18 |
| 17 namespace webrtc { | 19 namespace webrtc { |
| 18 | 20 |
| 19 const int kWidth = 320; | 21 const int kWidth = 320; |
| 20 const int kHeight = 240; | 22 const int kHeight = 240; |
| 21 const size_t kMaxPayloadSize = 800; | 23 const size_t kMaxPayloadSize = 800; |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 | 286 |
| 285 TEST_F(VideoEncoderSoftwareFallbackWrapperTest, | 287 TEST_F(VideoEncoderSoftwareFallbackWrapperTest, |
| 286 ReportsFallbackImplementationName) { | 288 ReportsFallbackImplementationName) { |
| 287 UtilizeFallbackEncoder(); | 289 UtilizeFallbackEncoder(); |
| 288 // Hard coded expected value since libvpx is the software implementation name | 290 // Hard coded expected value since libvpx is the software implementation name |
| 289 // for VP8. Change accordingly if the underlying implementation does. | 291 // for VP8. Change accordingly if the underlying implementation does. |
| 290 CheckLastEncoderName("libvpx"); | 292 CheckLastEncoderName("libvpx"); |
| 291 } | 293 } |
| 292 | 294 |
| 293 } // namespace webrtc | 295 } // namespace webrtc |
| OLD | NEW |