OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |