OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:icdf
(Results
1 - 4
of
4
) sorted by null
/external/libopus/silk/
code_signs.c
51
opus_uint8
icdf
[ 2 ];
local
55
icdf
[ 1 ] = 0;
63
icdf
[ 0 ] = icdf_ptr[ silk_min( p & 0x1F, 6 ) ];
66
ec_enc_icdf( psRangeEnc, silk_enc_map( q_ptr[ j ]),
icdf
, 8 );
85
opus_uint8
icdf
[ 2 ];
local
89
icdf
[ 1 ] = 0;
97
icdf
[ 0 ] = icdf_ptr[ silk_min( p & 0x1F, 6 ) ];
103
if( ec_dec_icdf( psRangeDec,
icdf
, 8 ) == 0 ) {
108
q_ptr[ j ] *= silk_dec_map( ec_dec_icdf( psRangeDec,
icdf
, 8 ) );
structs.h
181
const opus_uint8 *pitch_lag_low_bits_iCDF; /* Pointer to
iCDF
table for low bits of pitch lag index */
182
const opus_uint8 *pitch_contour_iCDF; /* Pointer to
iCDF
table for pitch contour index */
276
const opus_uint8 *pitch_lag_low_bits_iCDF; /* Pointer to
iCDF
table for low bits of pitch lag index */
277
const opus_uint8 *pitch_contour_iCDF; /* Pointer to
iCDF
table for pitch contour index */
enc_API.c
332
opus_uint8
iCDF
[ 2 ] = { 0, 0 };
333
iCDF
[ 0 ] = 256 - silk_RSHIFT( 256, ( psEnc->state_Fxx[ 0 ].sCmn.nFramesPerPacket + 1 ) * encControl->nChannelsInternal );
334
ec_enc_icdf( psRangeEnc, 0,
iCDF
, 8 );
/external/libopus/celt/tests/
test_unit_entropy.c
259
unsigned char
icdf
[2];
local
260
icdf
[0]=1;
261
icdf
[1]=0;
262
ec_enc_icdf(&enc,data[j],
icdf
,logp1[j]);
300
unsigned char
icdf
[2];
local
301
icdf
[0]=1;
302
icdf
[1]=0;
303
sym=ec_dec_icdf(&dec,
icdf
,logp1[j]);
Completed in 1495 milliseconds