Lines Matching refs:crc_extra_bits
74 uint32_t crc_extra_bits; member
402 uint32_t crc_extra_bits) in wv_check_crc() argument
408 if (s->got_extra_bits && crc_extra_bits != s->crc_extra_bits) { in wv_check_crc()
781 uint32_t crc_extra_bits = 0xFFFFFFFF; in wv_unpack_stereo() local
879 *dstfl_l++ = wv_get_value_float(s, &crc_extra_bits, L); in wv_unpack_stereo()
880 *dstfl_r++ = wv_get_value_float(s, &crc_extra_bits, R); in wv_unpack_stereo()
882 *dst32_l++ = wv_get_value_integer(s, &crc_extra_bits, L); in wv_unpack_stereo()
883 *dst32_r++ = wv_get_value_integer(s, &crc_extra_bits, R); in wv_unpack_stereo()
885 *dst16_l++ = wv_get_value_integer(s, &crc_extra_bits, L); in wv_unpack_stereo()
886 *dst16_r++ = wv_get_value_integer(s, &crc_extra_bits, R); in wv_unpack_stereo()
898 wv_check_crc(s, crc, crc_extra_bits)) in wv_unpack_stereo()
912 uint32_t crc_extra_bits = 0xFFFFFFFF; in wv_unpack_mono() local
948 *dstfl++ = wv_get_value_float(s, &crc_extra_bits, S); in wv_unpack_mono()
950 *dst32++ = wv_get_value_integer(s, &crc_extra_bits, S); in wv_unpack_mono()
952 *dst16++ = wv_get_value_integer(s, &crc_extra_bits, S); in wv_unpack_mono()
963 int ret = wv_check_crc(s, crc, crc_extra_bits); in wv_unpack_mono()
1387 s->crc_extra_bits = get_bits_long(&s->gb_extra_bits, 32); in wavpack_decode_block()