• Home
  • Raw
  • Download

Lines Matching refs:subframe

2547 	FLAC__Subframe_Constant *subframe = &decoder->private_->frame.subframes[channel].data.constant;  in read_subframe_constant_()  local
2557 subframe->value = x; in read_subframe_constant_()
2570 FLAC__Subframe_Fixed *subframe = &decoder->private_->frame.subframes[channel].data.fixed; in read_subframe_fixed_() local
2577 subframe->residual = decoder->private_->residual[channel]; in read_subframe_fixed_()
2578 subframe->order = order; in read_subframe_fixed_()
2584 subframe->warmup[u] = i32; in read_subframe_fixed_()
2590 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32; in read_subframe_fixed_()
2591 switch(subframe->entropy_coding_method.type) { in read_subframe_fixed_()
2601 subframe->entropy_coding_method.data.partitioned_rice.order = u32; in read_subframe_fixed_()
2602subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_r… in read_subframe_fixed_()
2611 switch(subframe->entropy_coding_method.type) { in read_subframe_fixed_()
2614subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_… in read_subframe_fixed_()
2623 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order); in read_subframe_fixed_()
2632 FLAC__Subframe_LPC *subframe = &decoder->private_->frame.subframes[channel].data.lpc; in read_subframe_lpc_() local
2639 subframe->residual = decoder->private_->residual[channel]; in read_subframe_lpc_()
2640 subframe->order = order; in read_subframe_lpc_()
2646 subframe->warmup[u] = i32; in read_subframe_lpc_()
2657 subframe->qlp_coeff_precision = u32+1; in read_subframe_lpc_()
2667 subframe->quantization_level = i32; in read_subframe_lpc_()
2671 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &i32, subframe->qlp_coeff_precision)) in read_subframe_lpc_()
2673 subframe->qlp_coeff[u] = i32; in read_subframe_lpc_()
2679 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32; in read_subframe_lpc_()
2680 switch(subframe->entropy_coding_method.type) { in read_subframe_lpc_()
2690 subframe->entropy_coding_method.data.partitioned_rice.order = u32; in read_subframe_lpc_()
2691subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_r… in read_subframe_lpc_()
2700 switch(subframe->entropy_coding_method.type) { in read_subframe_lpc_()
2703subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_… in read_subframe_lpc_()
2712 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order); in read_subframe_lpc_()
2713 if(bps + subframe->qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in read_subframe_lpc_()
2714 if(bps <= 16 && subframe->qlp_coeff_precision <= 16) in read_subframe_lpc_()
2715 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2717 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2719 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2727 FLAC__Subframe_Verbatim *subframe = &decoder->private_->frame.subframes[channel].data.verbatim; in read_subframe_verbatim_() local
2733 subframe->data = residual; in read_subframe_verbatim_()
2743 …memcpy(decoder->private_->output[channel], subframe->data, sizeof(FLAC__int32) * decoder->private_… in read_subframe_verbatim_()