| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 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/modules/audio_processing/test/conversational_speech/wavreader_f
actory.h" | 11 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_f
actory.h" |
| 12 | 12 |
| 13 #include <cstddef> | 13 #include <cstddef> |
| 14 | 14 |
| 15 #include "webrtc/api/array_view.h" |
| 15 #include "webrtc/common_audio/wav_file.h" | 16 #include "webrtc/common_audio/wav_file.h" |
| 16 #include "webrtc/rtc_base/array_view.h" | |
| 17 #include "webrtc/rtc_base/checks.h" | 17 #include "webrtc/rtc_base/checks.h" |
| 18 #include "webrtc/typedefs.h" | 18 #include "webrtc/typedefs.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 namespace test { | 21 namespace test { |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 using conversational_speech::WavReaderInterface; | 24 using conversational_speech::WavReaderInterface; |
| 25 | 25 |
| 26 class WavReaderAdaptor final : public WavReaderInterface { | 26 class WavReaderAdaptor final : public WavReaderInterface { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 WavReaderFactory::~WavReaderFactory() = default; | 62 WavReaderFactory::~WavReaderFactory() = default; |
| 63 | 63 |
| 64 std::unique_ptr<WavReaderInterface> WavReaderFactory::Create( | 64 std::unique_ptr<WavReaderInterface> WavReaderFactory::Create( |
| 65 const std::string& filepath) const { | 65 const std::string& filepath) const { |
| 66 return std::unique_ptr<WavReaderAdaptor>(new WavReaderAdaptor(filepath)); | 66 return std::unique_ptr<WavReaderAdaptor>(new WavReaderAdaptor(filepath)); |
| 67 } | 67 } |
| 68 | 68 |
| 69 } // namespace conversational_speech | 69 } // namespace conversational_speech |
| 70 } // namespace test | 70 } // namespace test |
| 71 } // namespace webrtc | 71 } // namespace webrtc |
| OLD | NEW |