Lines Matching refs:common
262 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_80()
263 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_80()
264 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_80()
265 OI_INT32 *s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_80()
270 …_32BIT_ALIGNED_72_HALFWORDS(context->common.filterBuffer[0] + context->common.filterBufferLen - 72… in OI_SBC_SynthFrame_80()
272 …_32BIT_ALIGNED_72_HALFWORDS(context->common.filterBuffer[1] + context->common.filterBufferLen - 72… in OI_SBC_SynthFrame_80()
274 offset = context->common.filterBufferLen - 80; in OI_SBC_SynthFrame_80()
280 DCT2_8(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_80()
281 SYNTH80(pcm + ch, context->common.filterBuffer[ch] + offset, pcmStrideShift); in OI_SBC_SynthFrame_80()
286 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_80()
293 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_4SB()
294 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_4SB()
295 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_4SB()
296 OI_INT32 *s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_4SB()
301 …D_32BIT_ALIGNED_72_HALFWORDS(context->common.filterBuffer[0] + context->common.filterBufferLen - 7… in OI_SBC_SynthFrame_4SB()
303 …D_32BIT_ALIGNED_72_HALFWORDS(context->common.filterBuffer[1] + context->common.filterBufferLen - 7… in OI_SBC_SynthFrame_4SB()
305 offset =context->common.filterBufferLen - 80; in OI_SBC_SynthFrame_4SB()
310 cosineModulateSynth4(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_4SB()
312 context->common.filterBuffer[ch] + offset, in OI_SBC_SynthFrame_4SB()
318 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_4SB()
327 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_Enhanced()
328 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_Enhanced()
329 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_Enhanced()
330 OI_INT32 *s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_Enhanced()
335 …32BIT_ALIGNED_104_HALFWORDS(context->common.filterBuffer[0] +context->common.filterBufferLen - 104… in OI_SBC_SynthFrame_Enhanced()
337 …32BIT_ALIGNED_104_HALFWORDS(context->common.filterBuffer[1] + context->common.filterBufferLen - 10… in OI_SBC_SynthFrame_Enhanced()
339 offset = context->common.filterBufferLen - 112; in OI_SBC_SynthFrame_Enhanced()
344 DCT2_8(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_Enhanced()
345 SYNTH112(pcm + ch, context->common.filterBuffer[ch] + offset, pcmStrideShift); in OI_SBC_SynthFrame_Enhanced()
350 context->common.filterBufferOffset = offset; in OI_SBC_SynthFrame_Enhanced()
376 OI_UINT nrof_subbands = context->common.frameInfo.nrof_subbands; in OI_SBC_SynthFrame()
377 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame()
383 } else if (context->common.frameInfo.enhanced) { in OI_SBC_SynthFrame()