| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ |
| 13 | 13 |
| 14 #include <memory> |
| 14 #include <string> | 15 #include <string> |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "webrtc/base/scoped_ptr.h" | |
| 17 #include "webrtc/typedefs.h" | 17 #include "webrtc/typedefs.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 | 20 |
| 21 // Define coding parameter as | 21 // Define coding parameter as |
| 22 // <channels, bit_rate, file_name, extension, if_save_output>. | 22 // <channels, bit_rate, file_name, extension, if_save_output>. |
| 23 typedef std::tr1::tuple<size_t, int, std::string, std::string, bool> | 23 typedef std::tr1::tuple<size_t, int, std::string, std::string, bool> |
| 24 coding_param; | 24 coding_param; |
| 25 | 25 |
| 26 class AudioCodecSpeedTest : public testing::TestWithParam<coding_param> { | 26 class AudioCodecSpeedTest : public testing::TestWithParam<coding_param> { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 54 int block_duration_ms_; | 54 int block_duration_ms_; |
| 55 int input_sampling_khz_; | 55 int input_sampling_khz_; |
| 56 int output_sampling_khz_; | 56 int output_sampling_khz_; |
| 57 | 57 |
| 58 // Number of samples-per-channel in a frame. | 58 // Number of samples-per-channel in a frame. |
| 59 size_t input_length_sample_; | 59 size_t input_length_sample_; |
| 60 | 60 |
| 61 // Expected output number of samples-per-channel in a frame. | 61 // Expected output number of samples-per-channel in a frame. |
| 62 size_t output_length_sample_; | 62 size_t output_length_sample_; |
| 63 | 63 |
| 64 rtc::scoped_ptr<int16_t[]> in_data_; | 64 std::unique_ptr<int16_t[]> in_data_; |
| 65 rtc::scoped_ptr<int16_t[]> out_data_; | 65 std::unique_ptr<int16_t[]> out_data_; |
| 66 size_t data_pointer_; | 66 size_t data_pointer_; |
| 67 size_t loop_length_samples_; | 67 size_t loop_length_samples_; |
| 68 rtc::scoped_ptr<uint8_t[]> bit_stream_; | 68 std::unique_ptr<uint8_t[]> bit_stream_; |
| 69 | 69 |
| 70 // Maximum number of bytes in output bitstream for a frame of audio. | 70 // Maximum number of bytes in output bitstream for a frame of audio. |
| 71 size_t max_bytes_; | 71 size_t max_bytes_; |
| 72 | 72 |
| 73 size_t encoded_bytes_; | 73 size_t encoded_bytes_; |
| 74 float encoding_time_ms_; | 74 float encoding_time_ms_; |
| 75 float decoding_time_ms_; | 75 float decoding_time_ms_; |
| 76 FILE* out_file_; | 76 FILE* out_file_; |
| 77 | 77 |
| 78 size_t channels_; | 78 size_t channels_; |
| 79 | 79 |
| 80 // Bit rate is in bit-per-second. | 80 // Bit rate is in bit-per-second. |
| 81 int bit_rate_; | 81 int bit_rate_; |
| 82 | 82 |
| 83 std::string in_filename_; | 83 std::string in_filename_; |
| 84 | 84 |
| 85 // Determines whether to save the output to file. | 85 // Determines whether to save the output to file. |
| 86 bool save_out_data_; | 86 bool save_out_data_; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace webrtc | 89 } // namespace webrtc |
| 90 | 90 |
| 91 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ | 91 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ |
| OLD | NEW |