Lines Matching refs:subframe
2548 FLAC__Subframe_Constant *subframe = &decoder->private_->frame.subframes[channel].data.constant; in read_subframe_constant_() local
2558 subframe->value = x; in read_subframe_constant_()
2571 FLAC__Subframe_Fixed *subframe = &decoder->private_->frame.subframes[channel].data.fixed; in read_subframe_fixed_() local
2578 subframe->residual = decoder->private_->residual[channel]; in read_subframe_fixed_()
2579 subframe->order = order; in read_subframe_fixed_()
2585 subframe->warmup[u] = i32; in read_subframe_fixed_()
2591 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32; in read_subframe_fixed_()
2592 switch(subframe->entropy_coding_method.type) { in read_subframe_fixed_()
2597 subframe->entropy_coding_method.data.partitioned_rice.order = u32; in read_subframe_fixed_()
2598 …subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_r… in read_subframe_fixed_()
2607 switch(subframe->entropy_coding_method.type) { in read_subframe_fixed_()
2610 …subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_… in read_subframe_fixed_()
2619 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order); in read_subframe_fixed_()
2628 FLAC__Subframe_LPC *subframe = &decoder->private_->frame.subframes[channel].data.lpc; in read_subframe_lpc_() local
2635 subframe->residual = decoder->private_->residual[channel]; in read_subframe_lpc_()
2636 subframe->order = order; in read_subframe_lpc_()
2642 subframe->warmup[u] = i32; in read_subframe_lpc_()
2653 subframe->qlp_coeff_precision = u32+1; in read_subframe_lpc_()
2658 subframe->quantization_level = i32; in read_subframe_lpc_()
2662 if(!FLAC__bitreader_read_raw_int32(decoder->private_->input, &i32, subframe->qlp_coeff_precision)) in read_subframe_lpc_()
2664 subframe->qlp_coeff[u] = i32; in read_subframe_lpc_()
2670 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32; in read_subframe_lpc_()
2671 switch(subframe->entropy_coding_method.type) { in read_subframe_lpc_()
2676 subframe->entropy_coding_method.data.partitioned_rice.order = u32; in read_subframe_lpc_()
2677 …subframe->entropy_coding_method.data.partitioned_rice.contents = &decoder->private_->partitioned_r… in read_subframe_lpc_()
2686 switch(subframe->entropy_coding_method.type) { in read_subframe_lpc_()
2689 …subframe->entropy_coding_method.data.partitioned_rice.order, &decoder->private_->partitioned_rice_… in read_subframe_lpc_()
2698 memcpy(decoder->private_->output[channel], subframe->warmup, sizeof(FLAC__int32) * order); in read_subframe_lpc_()
2702 if(bps + subframe->qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in read_subframe_lpc_()
2703 if(bps <= 16 && subframe->qlp_coeff_precision <= 16) in read_subframe_lpc_()
2704 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2706 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2708 …hannel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe->qu… in read_subframe_lpc_()
2716 FLAC__Subframe_Verbatim *subframe = &decoder->private_->frame.subframes[channel].data.verbatim; in read_subframe_verbatim_() local
2722 subframe->data = residual; in read_subframe_verbatim_()
2732 …memcpy(decoder->private_->output[channel], subframe->data, sizeof(FLAC__int32) * decoder->private_… in read_subframe_verbatim_()