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

Side by Side Diff: third_party/opus/src/silk/tables.h

Issue 2962373002: [Opus] Update to v1.2.1 (Closed)
Patch Set: Pre-increment instead of post-increment 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
« no previous file with comments | « third_party/opus/src/silk/sum_sqr_shift.c ('k') | third_party/opus/src/silk/tables_LTP.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /*********************************************************************** 1 /***********************************************************************
2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
3 Redistribution and use in source and binary forms, with or without 3 Redistribution and use in source and binary forms, with or without
4 modification, are permitted provided that the following conditions 4 modification, are permitted provided that the following conditions
5 are met: 5 are met:
6 - Redistributions of source code must retain the above copyright notice, 6 - Redistributions of source code must retain the above copyright notice,
7 this list of conditions and the following disclaimer. 7 this list of conditions and the following disclaimer.
8 - Redistributions in binary form must reproduce the above copyright 8 - Redistributions in binary form must reproduce the above copyright
9 notice, this list of conditions and the following disclaimer in the 9 notice, this list of conditions and the following disclaimer in the
10 documentation and/or other materials provided with the distribution. 10 documentation and/or other materials provided with the distribution.
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 extern const opus_uint8 silk_uniform4_iCDF[ 4 ]; /* 4 */ 69 extern const opus_uint8 silk_uniform4_iCDF[ 4 ]; /* 4 */
70 extern const opus_uint8 silk_uniform5_iCDF[ 5 ]; /* 5 */ 70 extern const opus_uint8 silk_uniform5_iCDF[ 5 ]; /* 5 */
71 extern const opus_uint8 silk_uniform6_iCDF[ 6 ]; /* 6 */ 71 extern const opus_uint8 silk_uniform6_iCDF[ 6 ]; /* 6 */
72 extern const opus_uint8 silk_uniform8_iCDF[ 8 ]; /* 8 */ 72 extern const opus_uint8 silk_uniform8_iCDF[ 8 ]; /* 8 */
73 73
74 extern const opus_uint8 silk_NLSF_EXT_iCDF[ 7 ]; /* 7 */ 74 extern const opus_uint8 silk_NLSF_EXT_iCDF[ 7 ]; /* 7 */
75 75
76 extern const opus_uint8 silk_LTP_per_index_iCDF[ 3 ]; /* 3 */ 76 extern const opus_uint8 silk_LTP_per_index_iCDF[ 3 ]; /* 3 */
77 extern const opus_uint8 * const silk_LTP_gain_iCDF_ptrs[ NB_LTP_CBKS ]; /* 3 */ 77 extern const opus_uint8 * const silk_LTP_gain_iCDF_ptrs[ NB_LTP_CBKS ]; /* 3 */
78 extern const opus_uint8 * const silk_LTP_gain_BITS_Q5_ptrs[ NB_LTP_CBKS ]; /* 3 */ 78 extern const opus_uint8 * const silk_LTP_gain_BITS_Q5_ptrs[ NB_LTP_CBKS ]; /* 3 */
79 extern const opus_int16 silk_LTP_gain_middle_avg_RD_Q14;
80 extern const opus_int8 * const silk_LTP_vq_ptrs_Q7[ NB_LTP_CBKS ]; /* 168 */ 79 extern const opus_int8 * const silk_LTP_vq_ptrs_Q7[ NB_LTP_CBKS ]; /* 168 */
81 extern const opus_uint8 * const silk_LTP_vq_gain_ptrs_Q7[NB_LTP_CBKS]; 80 extern const opus_uint8 * const silk_LTP_vq_gain_ptrs_Q7[NB_LTP_CBKS];
82
83 extern const opus_int8 silk_LTP_vq_sizes[ NB_LTP_CBKS ]; /* 3 */ 81 extern const opus_int8 silk_LTP_vq_sizes[ NB_LTP_CBKS ]; /* 3 */
84 82
85 extern const opus_uint8 silk_LTPscale_iCDF[ 3 ]; /* 4 */ 83 extern const opus_uint8 silk_LTPscale_iCDF[ 3 ]; /* 4 */
86 extern const opus_int16 silk_LTPScales_table_Q14[ 3 ]; /* 6 */ 84 extern const opus_int16 silk_LTPScales_table_Q14[ 3 ]; /* 6 */
87 85
88 extern const opus_uint8 silk_type_offset_VAD_iCDF[ 4 ]; /* 4 */ 86 extern const opus_uint8 silk_type_offset_VAD_iCDF[ 4 ]; /* 4 */
89 extern const opus_uint8 silk_type_offset_no_VAD_iCDF[ 2 ]; /* 2 */ 87 extern const opus_uint8 silk_type_offset_no_VAD_iCDF[ 2 ]; /* 2 */
90 88
91 extern const opus_int16 silk_stereo_pred_quant_Q13[ STEREO_QUANT_TAB_SIZE ]; /* 32 */ 89 extern const opus_int16 silk_stereo_pred_quant_Q13[ STEREO_QUANT_TAB_SIZE ]; /* 32 */
92 extern const opus_uint8 silk_stereo_pred_joint_iCDF[ 25 ]; /* 25 */ 90 extern const opus_uint8 silk_stereo_pred_joint_iCDF[ 25 ]; /* 25 */
(...skipping 20 matching lines...) Expand all
113 extern const opus_int32 silk_Transition_LP_A_Q28[ TRANSITION_INT_NUM ][ TRANSIT ION_NA ]; /* 60 */ 111 extern const opus_int32 silk_Transition_LP_A_Q28[ TRANSITION_INT_NUM ][ TRANSIT ION_NA ]; /* 60 */
114 112
115 /* Rom table with cosine values */ 113 /* Rom table with cosine values */
116 extern const opus_int16 silk_LSFCosTab_FIX_Q12[ LSF_COS_TAB_SZ_FIX + 1 ]; /* 258 */ 114 extern const opus_int16 silk_LSFCosTab_FIX_Q12[ LSF_COS_TAB_SZ_FIX + 1 ]; /* 258 */
117 115
118 #ifdef __cplusplus 116 #ifdef __cplusplus
119 } 117 }
120 #endif 118 #endif
121 119
122 #endif 120 #endif
OLDNEW
« no previous file with comments | « third_party/opus/src/silk/sum_sqr_shift.c ('k') | third_party/opus/src/silk/tables_LTP.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698