Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Side by Side Diff: webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.h

Issue 1316523002: Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Rebase onto cleanup change Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 rtc::scoped_ptr<uint8_t[]> bit_stream_; 67 rtc::scoped_ptr<uint8_t[]> bit_stream_;
68 68
69 // Maximum number of bytes in output bitstream for a frame of audio. 69 // Maximum number of bytes in output bitstream for a frame of audio.
70 size_t max_bytes_; 70 size_t max_bytes_;
71 71
72 size_t encoded_bytes_; 72 size_t encoded_bytes_;
73 float encoding_time_ms_; 73 float encoding_time_ms_;
74 float decoding_time_ms_; 74 float decoding_time_ms_;
75 FILE* out_file_; 75 FILE* out_file_;
76 76
77 int channels_; 77 size_t channels_;
78 78
79 // Bit rate is in bit-per-second. 79 // Bit rate is in bit-per-second.
80 int bit_rate_; 80 int bit_rate_;
81 81
82 std::string in_filename_; 82 std::string in_filename_;
83 83
84 // Determines whether to save the output to file. 84 // Determines whether to save the output to file.
85 bool save_out_data_; 85 bool save_out_data_;
86 }; 86 };
87 87
88 } // namespace webrtc 88 } // namespace webrtc
89 89
90 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_ 90 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_TOOLS_AUDIO_CODEC_SPEED_TEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698