• Home
  • Raw
  • Download

Lines Matching refs:subframe

2556 	FLAC__Subframe_Constant *subframe = &decoder->private_->frame.subframes[channel].data.constant;  in read_subframe_constant_()  local
2566 subframe->value = x; in read_subframe_constant_()
2579 FLAC__Subframe_Fixed *subframe = &decoder->private_->frame.subframes[channel].data.fixed; in read_subframe_fixed_() local
2586 subframe->residual = decoder->private_->residual[channel]; in read_subframe_fixed_()
2587 subframe->order = order; in read_subframe_fixed_()
2593 subframe->warmup[u] = i32; in read_subframe_fixed_()
2599 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32; in read_subframe_fixed_()
2600 switch(subframe->entropy_coding_method.type) { in read_subframe_fixed_()
2610 subframe->entropy_coding_method.data.partitioned_rice.order = u32; in read_subframe_fixed_()
2611subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_r… in read_subframe_fixed_()
2620 switch(subframe->entropy_coding_method.type) { in read_subframe_fixed_()
2623subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_… in read_subframe_fixed_()
2632 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order); in read_subframe_fixed_()
2641 FLAC__Subframe_LPC *subframe = &decoder->private_->frame.subframes[channel].data.lpc; in read_subframe_lpc_() local
2648 subframe->residual = decoder->private_->residual[channel]; in read_subframe_lpc_()
2649 subframe->order = order; in read_subframe_lpc_()
2655 subframe->warmup[u] = i32; in read_subframe_lpc_()
2666 subframe->qlp_coeff_precision = u32+1; in read_subframe_lpc_()
2676 subframe->quantization_level = i32; in read_subframe_lpc_()
2680 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &i32, subframe->qlp_coeff_precision)) in read_subframe_lpc_()
2682 subframe->qlp_coeff[u] = i32; in read_subframe_lpc_()
2688 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32; in read_subframe_lpc_()
2689 switch(subframe->entropy_coding_method.type) { in read_subframe_lpc_()
2699 subframe->entropy_coding_method.data.partitioned_rice.order = u32; in read_subframe_lpc_()
2700subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_r… in read_subframe_lpc_()
2709 switch(subframe->entropy_coding_method.type) { in read_subframe_lpc_()
2712subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_… in read_subframe_lpc_()
2721 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order); 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_()
2724 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2726 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2728 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2736 FLAC__Subframe_Verbatim *subframe = &decoder->private_->frame.subframes[channel].data.verbatim; in read_subframe_verbatim_() local
2742 subframe->data = residual; in read_subframe_verbatim_()
2752 …memcpy(decoder->private_->output[channel], subframe->data, sizeof(FLAC__int32) * decoder->private_… in read_subframe_verbatim_()