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

Unified Diff: webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h

Issue 1227163003: Update audio code to use size_t more correctly, (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h
index 5abbd7ad446d9266a8e513d684b7468bbb185146..084135e41d6de32208c078f3fa371605dabebd8b 100644
--- a/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h
@@ -34,7 +34,7 @@ typedef struct Bitstreamstruct_dec {
int16_t full; /* 0 - first byte in memory filled, second empty*/
/* 1 - both bytes are empty (we just filled the previous memory */
- int stream_size; /* The size of stream. */
+ size_t stream_size; /* The size of stream. */
minyue-webrtc 2015/08/12 16:08:08 could you add a unit in the comment
Peter Kasting 2015/08/14 22:32:26 Done.
} Bitstr_dec;
/* Bitstream struct for encoder */
@@ -178,8 +178,8 @@ typedef struct {
int16_t pitchCycles;
int16_t A;
int16_t B;
- int16_t pitchIndex;
- int16_t stretchLag;
+ size_t pitchIndex;
+ size_t stretchLag;
minyue-webrtc 2015/08/12 16:08:08 I am not sure if Lag is a count. What unit does it
Peter Kasting 2015/08/14 22:32:26 From reading caller code, I believe it's a sample
hlundin-webrtc 2015/08/17 08:13:21 I agree with Minyue, Even though I believe it is a
Peter Kasting 2015/08/17 08:23:53 There are a number of lag-related variables I've c
hlundin-webrtc 2015/08/18 09:03:16 Acknowledged.
int16_t *prevPitchLP; // [ FRAMESAMPLES/2 ]; saved 240
int16_t seed;

Powered by Google App Engine
This is Rietveld 408576698