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

Side by Side Diff: webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc

Issue 1238083005: [NOT FOR REVIEW] Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Checkpoint Created 5 years, 4 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 payload_type_(config.payload_type), 42 payload_type_(config.payload_type),
43 num_10ms_frames_per_packet_( 43 num_10ms_frames_per_packet_(
44 static_cast<size_t>(config.frame_size_ms / 10)), 44 static_cast<size_t>(config.frame_size_ms / 10)),
45 num_10ms_frames_buffered_(0), 45 num_10ms_frames_buffered_(0),
46 first_timestamp_in_buffer_(0), 46 first_timestamp_in_buffer_(0),
47 encoders_(new EncoderState[num_channels_]), 47 encoders_(new EncoderState[num_channels_]),
48 interleave_buffer_(2 * num_channels_) { 48 interleave_buffer_(2 * num_channels_) {
49 CHECK(config.IsOk()); 49 CHECK(config.IsOk());
50 const size_t samples_per_channel = 50 const size_t samples_per_channel =
51 kSampleRateHz / 100 * num_10ms_frames_per_packet_; 51 kSampleRateHz / 100 * num_10ms_frames_per_packet_;
52 for (int i = 0; i < num_channels_; ++i) { 52 for (size_t i = 0; i < num_channels_; ++i) {
53 encoders_[i].speech_buffer.reset(new int16_t[samples_per_channel]); 53 encoders_[i].speech_buffer.reset(new int16_t[samples_per_channel]);
54 encoders_[i].encoded_buffer.SetSize(samples_per_channel / 2); 54 encoders_[i].encoded_buffer.SetSize(samples_per_channel / 2);
55 } 55 }
56 } 56 }
57 57
58 AudioEncoderG722::~AudioEncoderG722() {} 58 AudioEncoderG722::~AudioEncoderG722() {}
59 59
60 int AudioEncoderG722::SampleRateHz() const { 60 int AudioEncoderG722::SampleRateHz() const {
61 return kSampleRateHz; 61 return kSampleRateHz;
62 } 62 }
63 63
64 int AudioEncoderG722::RtpTimestampRateHz() const { 64 int AudioEncoderG722::RtpTimestampRateHz() const {
65 // The RTP timestamp rate for G.722 is 8000 Hz, even though it is a 16 kHz 65 // The RTP timestamp rate for G.722 is 8000 Hz, even though it is a 16 kHz
66 // codec. 66 // codec.
67 return kSampleRateHz / 2; 67 return kSampleRateHz / 2;
68 } 68 }
69 69
70 int AudioEncoderG722::NumChannels() const { 70 size_t AudioEncoderG722::NumChannels() const {
71 return num_channels_; 71 return num_channels_;
72 } 72 }
73 73
74 size_t AudioEncoderG722::MaxEncodedBytes() const { 74 size_t AudioEncoderG722::MaxEncodedBytes() const {
75 return SamplesPerChannel() / 2 * num_channels_; 75 return SamplesPerChannel() / 2 * num_channels_;
76 } 76 }
77 77
78 size_t AudioEncoderG722::Num10MsFramesInNextPacket() const { 78 size_t AudioEncoderG722::Num10MsFramesInNextPacket() const {
79 return num_10ms_frames_per_packet_; 79 return num_10ms_frames_per_packet_;
80 } 80 }
(...skipping 13 matching lines...) Expand all
94 size_t max_encoded_bytes, 94 size_t max_encoded_bytes,
95 uint8_t* encoded) { 95 uint8_t* encoded) {
96 CHECK_GE(max_encoded_bytes, MaxEncodedBytes()); 96 CHECK_GE(max_encoded_bytes, MaxEncodedBytes());
97 97
98 if (num_10ms_frames_buffered_ == 0) 98 if (num_10ms_frames_buffered_ == 0)
99 first_timestamp_in_buffer_ = rtp_timestamp; 99 first_timestamp_in_buffer_ = rtp_timestamp;
100 100
101 // Deinterleave samples and save them in each channel's buffer. 101 // Deinterleave samples and save them in each channel's buffer.
102 const size_t start = kSampleRateHz / 100 * num_10ms_frames_buffered_; 102 const size_t start = kSampleRateHz / 100 * num_10ms_frames_buffered_;
103 for (size_t i = 0; i < kSampleRateHz / 100; ++i) 103 for (size_t i = 0; i < kSampleRateHz / 100; ++i)
104 for (int j = 0; j < num_channels_; ++j) 104 for (size_t j = 0; j < num_channels_; ++j)
105 encoders_[j].speech_buffer[start + i] = audio[i * num_channels_ + j]; 105 encoders_[j].speech_buffer[start + i] = audio[i * num_channels_ + j];
106 106
107 // If we don't yet have enough samples for a packet, we're done for now. 107 // If we don't yet have enough samples for a packet, we're done for now.
108 if (++num_10ms_frames_buffered_ < num_10ms_frames_per_packet_) { 108 if (++num_10ms_frames_buffered_ < num_10ms_frames_per_packet_) {
109 return EncodedInfo(); 109 return EncodedInfo();
110 } 110 }
111 111
112 // Encode each channel separately. 112 // Encode each channel separately.
113 CHECK_EQ(num_10ms_frames_buffered_, num_10ms_frames_per_packet_); 113 CHECK_EQ(num_10ms_frames_buffered_, num_10ms_frames_per_packet_);
114 num_10ms_frames_buffered_ = 0; 114 num_10ms_frames_buffered_ = 0;
115 const size_t samples_per_channel = SamplesPerChannel(); 115 const size_t samples_per_channel = SamplesPerChannel();
116 for (int i = 0; i < num_channels_; ++i) { 116 for (size_t i = 0; i < num_channels_; ++i) {
117 const size_t encoded = WebRtcG722_Encode( 117 const size_t encoded = WebRtcG722_Encode(
118 encoders_[i].encoder, encoders_[i].speech_buffer.get(), 118 encoders_[i].encoder, encoders_[i].speech_buffer.get(),
119 samples_per_channel, encoders_[i].encoded_buffer.data<uint8_t>()); 119 samples_per_channel, encoders_[i].encoded_buffer.data<uint8_t>());
120 CHECK_EQ(encoded, samples_per_channel / 2); 120 CHECK_EQ(encoded, samples_per_channel / 2);
121 } 121 }
122 122
123 // Interleave the encoded bytes of the different channels. Each separate 123 // Interleave the encoded bytes of the different channels. Each separate
124 // channel and the interleaved stream encodes two samples per byte, most 124 // channel and the interleaved stream encodes two samples per byte, most
125 // significant half first. 125 // significant half first.
126 for (size_t i = 0; i < samples_per_channel / 2; ++i) { 126 for (size_t i = 0; i < samples_per_channel / 2; ++i) {
127 for (int j = 0; j < num_channels_; ++j) { 127 for (size_t j = 0; j < num_channels_; ++j) {
128 uint8_t two_samples = encoders_[j].encoded_buffer.data()[i]; 128 uint8_t two_samples = encoders_[j].encoded_buffer.data()[i];
129 interleave_buffer_.data()[j] = two_samples >> 4; 129 interleave_buffer_.data()[j] = two_samples >> 4;
130 interleave_buffer_.data()[num_channels_ + j] = two_samples & 0xf; 130 interleave_buffer_.data()[num_channels_ + j] = two_samples & 0xf;
131 } 131 }
132 for (int j = 0; j < num_channels_; ++j) 132 for (size_t j = 0; j < num_channels_; ++j)
133 encoded[i * num_channels_ + j] = interleave_buffer_.data()[2 * j] << 4 | 133 encoded[i * num_channels_ + j] = interleave_buffer_.data()[2 * j] << 4 |
134 interleave_buffer_.data()[2 * j + 1]; 134 interleave_buffer_.data()[2 * j + 1];
135 } 135 }
136 EncodedInfo info; 136 EncodedInfo info;
137 info.encoded_bytes = samples_per_channel / 2 * num_channels_; 137 info.encoded_bytes = samples_per_channel / 2 * num_channels_;
138 info.encoded_timestamp = first_timestamp_in_buffer_; 138 info.encoded_timestamp = first_timestamp_in_buffer_;
139 info.payload_type = payload_type_; 139 info.payload_type = payload_type_;
140 return info; 140 return info;
141 } 141 }
142 142
143 size_t AudioEncoderG722::SamplesPerChannel() const { 143 size_t AudioEncoderG722::SamplesPerChannel() const {
144 return kSampleRateHz / 100 * num_10ms_frames_per_packet_; 144 return kSampleRateHz / 100 * num_10ms_frames_per_packet_;
145 } 145 }
146 146
147 namespace { 147 namespace {
148 AudioEncoderG722::Config CreateConfig(const CodecInst& codec_inst) { 148 AudioEncoderG722::Config CreateConfig(const CodecInst& codec_inst) {
149 AudioEncoderG722::Config config; 149 AudioEncoderG722::Config config;
150 config.num_channels = codec_inst.channels; 150 config.num_channels = codec_inst.channels;
151 config.frame_size_ms = codec_inst.pacsize / 16; 151 config.frame_size_ms = codec_inst.pacsize / 16;
152 config.payload_type = codec_inst.pltype; 152 config.payload_type = codec_inst.pltype;
153 return config; 153 return config;
154 } 154 }
155 } // namespace 155 } // namespace
156 156
157 AudioEncoderMutableG722::AudioEncoderMutableG722(const CodecInst& codec_inst) 157 AudioEncoderMutableG722::AudioEncoderMutableG722(const CodecInst& codec_inst)
158 : AudioEncoderMutableImpl<AudioEncoderG722>(CreateConfig(codec_inst)) { 158 : AudioEncoderMutableImpl<AudioEncoderG722>(CreateConfig(codec_inst)) {
159 } 159 }
160 160
161 } // namespace webrtc 161 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698