| 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 "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 #include "webrtc/base/arraysize.h" | 12 #include "webrtc/base/arraysize.h" |
| 13 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_encoder.h" | 13 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_encoder.h" |
| 14 #include "webrtc/modules/audio_coding/main/acm2/rent_a_codec.h" | 14 #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" |
| 15 | 15 |
| 16 namespace webrtc { | 16 namespace webrtc { |
| 17 namespace acm2 { | 17 namespace acm2 { |
| 18 | 18 |
| 19 using ::testing::Return; | 19 using ::testing::Return; |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 const int kDataLengthSamples = 80; | 22 const int kDataLengthSamples = 80; |
| 23 const int kPacketSizeSamples = 2 * kDataLengthSamples; | 23 const int kPacketSizeSamples = 2 * kDataLengthSamples; |
| 24 const int16_t kZeroData[kDataLengthSamples] = {0}; | 24 const int16_t kZeroData[kDataLengthSamples] = {0}; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 200 |
| 201 TEST(RentACodecTest, RentEncoderError) { | 201 TEST(RentACodecTest, RentEncoderError) { |
| 202 const CodecInst codec_inst = { | 202 const CodecInst codec_inst = { |
| 203 0, "Robert'); DROP TABLE Students;", 8000, 160, 1, 64000}; | 203 0, "Robert'); DROP TABLE Students;", 8000, 160, 1, 64000}; |
| 204 RentACodec rent_a_codec; | 204 RentACodec rent_a_codec; |
| 205 EXPECT_FALSE(rent_a_codec.RentEncoder(codec_inst)); | 205 EXPECT_FALSE(rent_a_codec.RentEncoder(codec_inst)); |
| 206 } | 206 } |
| 207 | 207 |
| 208 } // namespace acm2 | 208 } // namespace acm2 |
| 209 } // namespace webrtc | 209 } // namespace webrtc |
| OLD | NEW |