• Home
  • Raw
  • Download

Lines Matching refs:bps

97 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC…
98 …ubframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full…
99 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps
100 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, …
101 …ubframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full…
2054 unsigned bps = decoder->private_->frame.header.bits_per_sample; in read_frame_() local
2062 bps++; in read_frame_()
2067 bps++; in read_frame_()
2072 bps++; in read_frame_()
2080 if(!read_subframe_(decoder, channel, bps, do_full_decode)) in read_frame_()
2482 FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool … in read_subframe_() argument
2499 bps -= decoder->private_->frame.subframes[channel].wasted_bits; in read_subframe_()
2513 if(!read_subframe_constant_(decoder, channel, bps, do_full_decode)) in read_subframe_()
2517 if(!read_subframe_verbatim_(decoder, channel, bps, do_full_decode)) in read_subframe_()
2526 if(!read_subframe_fixed_(decoder, channel, bps, (x>>1)&7, do_full_decode)) in read_subframe_()
2537 if(!read_subframe_lpc_(decoder, channel, bps, ((x>>1)&31)+1, do_full_decode)) in read_subframe_()
2554 FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FL… in read_subframe_constant_() argument
2563 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &x, bps)) in read_subframe_constant_()
2577 FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const… in read_subframe_fixed_() argument
2591 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &i32, bps)) in read_subframe_fixed_()
2639 FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const u… in read_subframe_lpc_() argument
2653 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &i32, bps)) in read_subframe_lpc_()
2722 if(bps + subframe->qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in read_subframe_lpc_()
2723 if(bps <= 16 && subframe->qlp_coeff_precision <= 16) in read_subframe_lpc_()
2734 FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FL… in read_subframe_verbatim_() argument
2745 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &x, bps)) in read_subframe_verbatim_()
3016 unsigned bps = FLAC__stream_decoder_get_bits_per_sample(decoder); in seek_to_absolute_sample_() local
3022 if(bps == 0) in seek_to_absolute_sample_()
3023 bps = decoder->private_->stream_info.data.stream_info.bits_per_sample; in seek_to_absolute_sample_()
3036 approx_bytes_per_frame = min_blocksize * channels * bps/8 + 64; in seek_to_absolute_sample_()
3039 approx_bytes_per_frame = 4096 * channels * bps/8 + 64; in seek_to_absolute_sample_()