Home
last modified time | relevance | path

Searched refs:unpacked_bits (Results 1 – 5 of 5) sorted by relevance

/dports/audio/codec2/codec2-1.0.3/src/
H A Dfreedv_api.c249 static void codec2_encode_upacked(struct freedv *f, uint8_t unpacked_bits[], short speech_in[]) { in codec2_encode_upacked() argument
254 freedv_unpack(unpacked_bits, packed_codec_bits, f->bits_per_codec_frame); in codec2_encode_upacked()
426 unsigned short freedv_crc16_unpacked(unsigned char unpacked_bits[], int nbits) { in freedv_crc16_unpacked() argument
430 freedv_pack(packed_bytes, unpacked_bits, nbits); in freedv_crc16_unpacked()
435 int freedv_check_crc16_unpacked(unsigned char unpacked_bits[], int nbits) { in freedv_check_crc16_unpacked() argument
439 freedv_pack(packed_bytes, unpacked_bits, nbits); in freedv_check_crc16_unpacked()
441 uint16_t rx_crc16 = freedv_crc16_unpacked(unpacked_bits, nbits - 16); in freedv_check_crc16_unpacked()
821 static void codec2_decode_upacked(struct freedv *f, short speech_out[], uint8_t unpacked_bits[]) { in codec2_decode_upacked() argument
825 freedv_pack(packed_codec_bits, unpacked_bits, f->bits_per_codec_frame); in codec2_decode_upacked()
H A Dcodec2.h103 int codec2_rebuild_spare_bit(struct CODEC2 *codec2_state, char unpacked_bits[]);
H A Dcodec2.c2193 int codec2_rebuild_spare_bit(struct CODEC2 *c2, char unpacked_bits[]) in codec2_rebuild_spare_bit() argument
2199 v1 = unpacked_bits[1]; in codec2_rebuild_spare_bit()
2204 v3 = unpacked_bits[1+1+1]; in codec2_rebuild_spare_bit()
2208 unpacked_bits[2] = (v1 || v3); in codec2_rebuild_spare_bit()
2216 v3 = unpacked_bits[1+1+8+1]; in codec2_rebuild_spare_bit()
2220 unpacked_bits[10] = (v1 || v3); in codec2_rebuild_spare_bit()
2227 v3 = unpacked_bits[1+1+8+5+1]; in codec2_rebuild_spare_bit()
2231 unpacked_bits[15] = (v1 || v3); in codec2_rebuild_spare_bit()
H A Dfreedv_api.h210 int freedv_check_crc16_unpacked(unsigned char *unpacked_bits, int nbits);
/dports/audio/chromaprint/chromaprint-v1.5.0/src/utils/
H A Dgen_bit_reader.py65 unpacked_bits, code = gen_unpack_bytes(nbytes) variable