Misc small nits in NetEq

Fixing a few small things found recently. This is mostly cosmetics.

R=tina.legrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/8749005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5558 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org 2014-02-17 11:37:16 +00:00
parent 1009798b31
commit 340746aa13
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ Operations DecisionLogicNormal::GetDecisionSpecialized(
uint32_t target_timestamp = sync_buffer.end_timestamp();
uint32_t available_timestamp = 0;
int is_cng_packet = 0;
bool is_cng_packet = false;
if (packet_header) {
available_timestamp = packet_header->timestamp;
is_cng_packet =

View File

@ -139,9 +139,9 @@ class Expand {
SyncBuffer* sync_buffer_;
RandomVector* random_vector_;
bool first_expand_;
int fs_hz_;
size_t num_channels_;
size_t overlap_length_;
const int fs_hz_;
const size_t num_channels_;
const size_t overlap_length_;
int consecutive_expands_;
int16_t max_lag_;
size_t expand_lags_[kNumLags];