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

Side by Side Diff: webrtc/modules/audio_coding/codecs/ilbc/test/iLBC_testLib.c

Issue 1438663003: modules/audio_coding: Remove some codec include dirs (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase again Created 5 years, 1 month 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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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
11 /****************************************************************** 11 /******************************************************************
12 12
13 iLBC Speech Coder ANSI-C Source Code 13 iLBC Speech Coder ANSI-C Source Code
14 14
15 iLBC_test.c 15 iLBC_test.c
16 16
17 ******************************************************************/ 17 ******************************************************************/
18 18
19 #include <math.h> 19 #include <math.h>
20 #include <stdlib.h> 20 #include <stdlib.h>
21 #include <stdio.h> 21 #include <stdio.h>
22 #include <string.h> 22 #include <string.h>
23 #include <time.h> 23 #include <time.h>
24 #include "ilbc.h" 24 #include "webrtc/modules/audio_coding/codecs/ilbc/ilbc.h"
25 25
26 //#define JUNK_DATA 26 //#define JUNK_DATA
27 #ifdef JUNK_DATA 27 #ifdef JUNK_DATA
28 #define SEED_FILE "randseed.txt" 28 #define SEED_FILE "randseed.txt"
29 #endif 29 #endif
30 30
31 31
32 /*----------------------------------------------------------------* 32 /*----------------------------------------------------------------*
33 * Main program to test iLBC encoding and decoding 33 * Main program to test iLBC encoding and decoding
34 * 34 *
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 WebRtcIlbcfix_EncoderFree(Enc_Inst); 206 WebRtcIlbcfix_EncoderFree(Enc_Inst);
207 WebRtcIlbcfix_DecoderFree(Dec_Inst); 207 WebRtcIlbcfix_DecoderFree(Dec_Inst);
208 208
209 /* close files */ 209 /* close files */
210 fclose(ifileid); 210 fclose(ifileid);
211 fclose(efileid); 211 fclose(efileid);
212 fclose(ofileid); 212 fclose(ofileid);
213 213
214 return 0; 214 return 0;
215 } 215 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698