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

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

Issue 2974613003: base->rtc_base: Update .c, .mm and .java files. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 11 matching lines...) Expand all
22 #include "lpc_encode.h" 22 #include "lpc_encode.h"
23 #include "frame_classify.h" 23 #include "frame_classify.h"
24 #include "state_search.h" 24 #include "state_search.h"
25 #include "state_construct.h" 25 #include "state_construct.h"
26 #include "constants.h" 26 #include "constants.h"
27 #include "cb_search.h" 27 #include "cb_search.h"
28 #include "cb_construct.h" 28 #include "cb_construct.h"
29 #include "index_conv_enc.h" 29 #include "index_conv_enc.h"
30 #include "pack_bits.h" 30 #include "pack_bits.h"
31 #include "hp_input.h" 31 #include "hp_input.h"
32 #include "webrtc/base/checks.h" 32 #include "webrtc/rtc_base/checks.h"
33 33
34 #ifdef SPLIT_10MS 34 #ifdef SPLIT_10MS
35 #include "unpack_bits.h" 35 #include "unpack_bits.h"
36 #include "index_conv_dec.h" 36 #include "index_conv_dec.h"
37 #endif 37 #endif
38 #ifndef WEBRTC_ARCH_BIG_ENDIAN 38 #ifndef WEBRTC_ARCH_BIG_ENDIAN
39 #include "swap_bytes.h" 39 #include "swap_bytes.h"
40 #endif 40 #endif
41 41
42 /*----------------------------------------------------------------* 42 /*----------------------------------------------------------------*
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 } 504 }
505 else 505 else
506 { 506 {
507 iLBCenc_inst->section++; 507 iLBCenc_inst->section++;
508 WEBRTC_SPL_MEMCPY_W16 (weightdenumbuf, weightdenum, 508 WEBRTC_SPL_MEMCPY_W16 (weightdenumbuf, weightdenum,
509 SCRATCH_ENCODE_DATAVEC - SCRATCH_ENCODE_WEIGHTDENUM); 509 SCRATCH_ENCODE_DATAVEC - SCRATCH_ENCODE_WEIGHTDENUM);
510 } 510 }
511 #endif 511 #endif
512 512
513 } 513 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.c ('k') | webrtc/modules/audio_coding/codecs/ilbc/ilbc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698