Home
last modified time | relevance | path

Searched refs:OI_UINT8 (Results 1 – 18 of 18) sorted by relevance

/system/bt/embdrv/sbc/decoder/include/
Doi_codec_sbc.h129 OI_UINT8 freqIndex;
131 OI_UINT8 nrof_blocks; /**< The block size used to encode the stream. Input parameter. */
132 OI_UINT8 blocks;
135 OI_UINT8 nrof_subbands; /**< The number of subbands of the encoded stream. Input parameter. */
136 OI_UINT8 subbands;
138 OI_UINT8 mode; /**< The mode of the encoded channel. Input parameter. */
139 OI_UINT8 nrof_channels; /**< The number of channels of the encoded stream. */
141 OI_UINT8 alloc; /**< The bit allocation method. Input parameter. */
142OI_UINT8 bitpool; /**< Size of the bit allocation pool used to encode the stream. Input para…
143 OI_UINT8 crc; /**< Parity check byte used for error detection. */
[all …]
Doi_cpu_dep.h122 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
168 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
190 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
216 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
245 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
268 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
290 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
312 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
332 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character… typedef
350 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer. */ typedef
[all …]
Doi_codec_sbc_private.h77 OI_UINT8 uint8[SBC_MAX_BANDS];
82 OI_UINT8 uint8[2 * SBC_MAX_BANDS];
87 static const OI_UINT8 block_values[] = { 4, 8, 12, 16 };
88 static const OI_UINT8 channel_values[] = { 1, 2, 2, 2 };
89 static const OI_UINT8 band_values[] = { 4, 8 };
98 const OI_UINT8 *r;
99 OI_UINT8 *w;
130 OI_UINT8 *bitneeds,
146 INLINE OI_INT allocAdjustedBits(OI_UINT8 *dest,
150 INLINE OI_INT allocExcessBits(OI_UINT8 *dest,
[all …]
Doi_bitstream.h49 INLINE OI_UINT8 OI_BITSTREAM_ReadUINT4Aligned(OI_BITSTREAM *bs);
51 INLINE OI_UINT8 OI_BITSTREAM_ReadUINT8Aligned(OI_BITSTREAM *bs);
61 OI_UINT8 datum);
67 OI_UINT8 datum1,
68 OI_UINT8 datum2);
105 *ptr++ = (OI_UINT8)(value >> 24);\
114 *ptr++ = (OI_UINT8)(value >> 24);\
Doi_bt_spec.h61OI_UINT8 addr[OI_BD_ADDR_BYTE_SIZE] ; /**< Bluetooth device address represented as an array o…
105OI_UINT8 base[OI_BT_UUID128_SIZE - sizeof(OI_UINT32)]; /**< remainder of 128-bit UUID, array of 8-…
137OI_UINT8 key[OI_BT_LINK_KEY_SIZE] ; /**< link key represented as an array of 8-bit values */
145 OI_UINT8 value[OI_BT_OOB_NUM_BYTES] ; /**< same struct used for C and R values */
169 OI_UINT8 pin[OI_BT_PIN_CODE_SIZE] ; /**< PIN represented as an array of 8-bit values */
186 typedef OI_UINT8 OI_HCI_ERROR_CODE ;
Doi_stddefs.h69 #define OI_UINT8_MIN ((OI_UINT8)0) /**< decimal value: 0 */
70 #define OI_UINT8_MAX ((OI_UINT8)0xFF) /**< decimal value: 255 */
143 typedef OI_UINT8 OI_UTF8;
Doi_osinterface.h127 void OI_SetMsgCode(OI_UINT8 code);
Doi_string.h85 void OI_MemSet(void *Block, OI_UINT8 Val, OI_UINT32 Size);
/system/bt/embdrv/sbc/decoder/srce/
Dframing.c111 INLINE OI_CHAR crc_iterate(OI_UINT8 oldcrc, OI_UINT8 next) in crc_iterate()
126 INLINE OI_CHAR crc_iterate_top4(OI_UINT8 oldcrc, OI_UINT8 next) in crc_iterate_top4()
143 INLINE OI_UINT8 crc_iterate_top4(OI_UINT8 oldcrc, OI_UINT8 next) in crc_iterate_top4()
149 INLINE OI_UINT8 crc_iterate(OI_UINT8 crc, OI_UINT8 next) in crc_iterate()
158 INLINE OI_UINT8 crc_iterate(OI_UINT8 crc, OI_UINT8 next) in crc_iterate()
168 PRIVATE OI_UINT8 OI_SBC_CalculateChecksum(OI_CODEC_SBC_FRAME_INFO *frame, OI_BYTE const *data) in OI_SBC_CalculateChecksum()
171 OI_UINT8 crc = 0x0f; in OI_SBC_CalculateChecksum()
Ddecoder-oina.c41 OI_UINT8 frequency, in OI_CODEC_SBC_DecoderConfigureRaw()
42 OI_UINT8 mode, in OI_CODEC_SBC_DecoderConfigureRaw()
43 OI_UINT8 subbands, in OI_CODEC_SBC_DecoderConfigureRaw()
44 OI_UINT8 blocks, in OI_CODEC_SBC_DecoderConfigureRaw()
45 OI_UINT8 alloc, in OI_CODEC_SBC_DecoderConfigureRaw()
46 OI_UINT8 maxBitpool) in OI_CODEC_SBC_DecoderConfigureRaw()
102 OI_UINT8 bitpool, in OI_CODEC_SBC_DecodeRaw()
118 OI_UINT8 subbands) in OI_CODEC_SBC_DecoderLimit()
Dbitstream-decode.c57 PRIVATE OI_UINT8 OI_BITSTREAM_ReadUINT4Aligned(OI_BITSTREAM *bs) in OI_BITSTREAM_ReadUINT4Aligned()
74 return (OI_UINT8)result; in OI_BITSTREAM_ReadUINT4Aligned()
77 PRIVATE OI_UINT8 OI_BITSTREAM_ReadUINT8Aligned(OI_BITSTREAM *bs) in OI_BITSTREAM_ReadUINT8Aligned()
85 return (OI_UINT8)result; in OI_BITSTREAM_ReadUINT8Aligned()
Dbitalloc.c119 OI_UINT8 *bitneeds, in computeBitneed()
141 OI_UINT8 maxBits = 0; in computeBitneed()
142 OI_UINT8 prefBits = 0; in computeBitneed()
304 INLINE OI_INT allocAdjustedBits(OI_UINT8 *dest, in allocAdjustedBits()
323 *dest = (OI_UINT8)bits; in allocAdjustedBits()
331 INLINE OI_INT allocExcessBits(OI_UINT8 *dest, in allocExcessBits()
347 const OI_UINT8 nrof_subbands = common->frameInfo.nrof_subbands; in oneChannelBitAllocation()
351 OI_UINT8 RESTRICT *allocBits; in oneChannelBitAllocation()
Ddecoder-sbc.c183 OI_UINT8 bitpool, in internal_DecodeRaw()
226 OI_UINT8 maxChannels, in OI_CODEC_SBC_DecoderReset()
227 OI_UINT8 pcmStride, in OI_CODEC_SBC_DecoderReset()
241 OI_UINT8 crc; in OI_CODEC_SBC_DecodeFrame()
338 OI_UINT8 crc; in OI_CODEC_SBC_SkipFrame()
365 OI_UINT8 OI_CODEC_SBC_FrameCount(OI_BYTE *frameData, in OI_CODEC_SBC_FrameCount()
368 OI_UINT8 mode; in OI_CODEC_SBC_FrameCount()
369 OI_UINT8 blocks; in OI_CODEC_SBC_FrameCount()
370 OI_UINT8 subbands; in OI_CODEC_SBC_FrameCount()
371 OI_UINT8 frameCount = 0; in OI_CODEC_SBC_FrameCount()
Dreadsamplesjoint.inc62 OI_UINT8 *ptr = global_bs->ptr.w;
65 OI_UINT8 jmask = common->frameInfo.join << (8 - NROF_SUBBANDS);
69 OI_UINT8 *bits_array = &common->bits.uint8[0];
70 OI_UINT8 joint = jmask;
79 OI_UINT8 bits = *bits_array++;
93 OI_UINT8 bits = *bits_array++;
Dalloc.c30 OI_UINT8 maxChannels, in OI_CODEC_SBC_Alloc()
31 OI_UINT8 pcmStride) in OI_CODEC_SBC_Alloc()
Dbitalloc-sbc.c119 OI_UINT8 OI_CODEC_SBC_GetMaxBitneed(OI_CODEC_SBC_COMMON_CONTEXT *common) in OI_CODEC_SBC_GetMaxBitneed()
121 OI_UINT8 max = common->maxBitneed; in OI_CODEC_SBC_GetMaxBitneed()
Ddecoder-private.c91 OI_UINT8 d1; in OI_SBC_ReadHeader()
183 OI_UINT8 *ptr = global_bs->ptr.w; in OI_SBC_ReadSamples()
/system/bt/btif/src/
Dbtif_media_task.c363 OI_UINT8 maxChannels,
364 OI_UINT8 pcmStride,