Lines Matching refs:common
281 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_80()
282 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_80()
283 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_80()
284 int32_t* s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_80()
290 context->common.filterBuffer[0] + context->common.filterBufferLen - in OI_SBC_SynthFrame_80()
292 context->common.filterBuffer[0]); in OI_SBC_SynthFrame_80()
295 context->common.filterBuffer[1] + context->common.filterBufferLen - in OI_SBC_SynthFrame_80()
297 context->common.filterBuffer[1]); in OI_SBC_SynthFrame_80()
299 offset = context->common.filterBufferLen - 80; in OI_SBC_SynthFrame_80()
305 DCT2_8(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_80()
306 SYNTH80(pcm + ch, context->common.filterBuffer[ch] + offset, in OI_SBC_SynthFrame_80()
312 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_80()
320 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_4SB()
321 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_4SB()
322 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_4SB()
323 int32_t* s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_4SB()
329 context->common.filterBuffer[0] + context->common.filterBufferLen - in OI_SBC_SynthFrame_4SB()
331 context->common.filterBuffer[0]); in OI_SBC_SynthFrame_4SB()
334 context->common.filterBuffer[1] + context->common.filterBufferLen - in OI_SBC_SynthFrame_4SB()
336 context->common.filterBuffer[1]); in OI_SBC_SynthFrame_4SB()
338 offset = context->common.filterBufferLen - 80; in OI_SBC_SynthFrame_4SB()
343 cosineModulateSynth4(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_4SB()
345 pcm + ch, context->common.filterBuffer[ch] + offset, pcmStrideShift); in OI_SBC_SynthFrame_4SB()
350 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_4SB()
360 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_Enhanced()
361 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_Enhanced()
362 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_Enhanced()
363 int32_t* s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_Enhanced()
369 context->common.filterBuffer[0] + context->common.filterBufferLen - in OI_SBC_SynthFrame_Enhanced()
371 context->common.filterBuffer[0]); in OI_SBC_SynthFrame_Enhanced()
374 context->common.filterBuffer[1] + context->common.filterBufferLen - in OI_SBC_SynthFrame_Enhanced()
376 context->common.filterBuffer[1]); in OI_SBC_SynthFrame_Enhanced()
378 offset = context->common.filterBufferLen - 112; in OI_SBC_SynthFrame_Enhanced()
383 DCT2_8(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_Enhanced()
384 SYNTH112(pcm + ch, context->common.filterBuffer[ch] + offset, in OI_SBC_SynthFrame_Enhanced()
390 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_Enhanced()
416 OI_UINT nrof_subbands = context->common.frameInfo.nrof_subbands; in OI_SBC_SynthFrame()
417 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame()
423 } else if (context->common.frameInfo.enhanced) { in OI_SBC_SynthFrame()