Lines Matching refs:frameInfo

75     context->common.frameInfo.enhanced =  in FindSyncword()
93 context->common.frameInfo.enhanced = FALSE; in FindSyncword()
108 OI_UINT frameSamples = context->common.frameInfo.nrof_blocks * in DecodeBody()
109 context->common.frameInfo.nrof_subbands; in DecodeBody()
124 context->common.frameInfo.nrof_subbands * in DecodeBody()
139 if (context->common.frameInfo.mode == SBC_JOINT_STEREO) { in DecodeBody()
145 context->bufferedBlocks = context->common.frameInfo.nrof_blocks; in DecodeBody()
151 context->common.frameInfo.nrof_subbands; in DecodeBody()
158 decode_block_count = context->common.frameInfo.nrof_blocks; in DecodeBody()
164 context->common.frameInfo.nrof_blocks - context->bufferedBlocks; in DecodeBody()
171 frameSamples = decode_block_count * context->common.frameInfo.nrof_subbands; in DecodeBody()
176 if (context->common.frameInfo.nrof_channels == 1 && in DecodeBody()
208 context->common.frameInfo.bitpool = bitpool; in internal_DecodeRaw()
212 bodyLen = OI_CODEC_SBC_CalculateFramelen(&context->common.frameInfo) - in internal_DecodeRaw()
276 (context->common.frameInfo.subbands != context->restrictSubbands)) { in OI_CODEC_SBC_DecodeFrame()
281 if (context->common.frameInfo.nrof_channels > context->common.maxChannels) { in OI_CODEC_SBC_DecodeFrame()
304 framelen = OI_CODEC_SBC_CalculateFramelen(&context->common.frameInfo); in OI_CODEC_SBC_DecodeFrame()
312 crc = OI_SBC_CalculateChecksum(&context->common.frameInfo, *frameData); in OI_CODEC_SBC_DecodeFrame()
313 if (crc != context->common.frameInfo.crc) { in OI_CODEC_SBC_DecodeFrame()
315 context->common.frameInfo.crc)); in OI_CODEC_SBC_DecodeFrame()
323 if ((context->common.frameInfo.bitpool < SBC_MIN_BITPOOL) && in OI_CODEC_SBC_DecodeFrame()
324 !context->common.frameInfo.enhanced) { in OI_CODEC_SBC_DecodeFrame()
326 context->common.frameInfo.bitpool)); in OI_CODEC_SBC_DecodeFrame()
329 if (context->common.frameInfo.bitpool > in OI_CODEC_SBC_DecodeFrame()
330 OI_SBC_MaxBitpool(&context->common.frameInfo)) { in OI_CODEC_SBC_DecodeFrame()
332 context->common.frameInfo.bitpool, in OI_CODEC_SBC_DecodeFrame()
333 OI_SBC_MaxBitpool(&context->common.frameInfo))); in OI_CODEC_SBC_DecodeFrame()
370 OI_SBC_CalculateFrameAndHeaderlen(&context->common.frameInfo, &headerlen); in OI_CODEC_SBC_SkipFrame()
374 crc = OI_SBC_CalculateChecksum(&context->common.frameInfo, *frameData); in OI_CODEC_SBC_SkipFrame()
375 if (crc != context->common.frameInfo.crc) { in OI_CODEC_SBC_SkipFrame()
471 OI_UINT nrof_subbands = common->frameInfo.nrof_subbands; in OI_SBC_ReadSamplesJoint()