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

Unified Diff: webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c

Issue 1319683002: AudioDecoder: Replace Init() with Reset() (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@buffer
Patch Set: review fixes 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c b/webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c
index 2f44ca88aef57ae99f4b8f3e572fb4f9493610c7..e8116ffdf863ffd8eae78bd269d09b63af979b5b 100644
--- a/webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c
+++ b/webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c
@@ -253,10 +253,7 @@ int main(int argc, char* argv[]) {
printf("cannot initialize encoder\n");
return -1;
}
- if (WebRtcIsac_DecoderInit(ISAC_main_inst) < 0) {
- printf("cannot initialize decoder\n");
- return -1;
- }
+ WebRtcIsac_DecoderInit(ISAC_main_inst);
// {
// int32_t b1, b2;

Powered by Google App Engine
This is Rietveld 408576698