Lines Matching refs:frameInfo
69 context->common.frameInfo.enhanced = in FindSyncword()
87 context->common.frameInfo.enhanced = FALSE; in FindSyncword()
102 OI_UINT frameSamples = context->common.frameInfo.nrof_blocks * in DecodeBody()
103 context->common.frameInfo.nrof_subbands; in DecodeBody()
118 context->common.frameInfo.nrof_subbands * in DecodeBody()
133 if (context->common.frameInfo.mode == SBC_JOINT_STEREO) { in DecodeBody()
139 context->bufferedBlocks = context->common.frameInfo.nrof_blocks; in DecodeBody()
145 context->common.frameInfo.nrof_subbands; in DecodeBody()
152 decode_block_count = context->common.frameInfo.nrof_blocks; in DecodeBody()
158 context->common.frameInfo.nrof_blocks - context->bufferedBlocks; in DecodeBody()
165 frameSamples = decode_block_count * context->common.frameInfo.nrof_subbands; in DecodeBody()
170 if (context->common.frameInfo.nrof_channels == 1 && in DecodeBody()
202 context->common.frameInfo.bitpool = bitpool; in internal_DecodeRaw()
206 bodyLen = OI_CODEC_SBC_CalculateFramelen(&context->common.frameInfo) - in internal_DecodeRaw()
270 (context->common.frameInfo.subbands != context->restrictSubbands)) { in OI_CODEC_SBC_DecodeFrame()
275 if (context->common.frameInfo.nrof_channels > context->common.maxChannels) { in OI_CODEC_SBC_DecodeFrame()
298 framelen = OI_CODEC_SBC_CalculateFramelen(&context->common.frameInfo); in OI_CODEC_SBC_DecodeFrame()
306 crc = OI_SBC_CalculateChecksum(&context->common.frameInfo, *frameData); in OI_CODEC_SBC_DecodeFrame()
307 if (crc != context->common.frameInfo.crc) { in OI_CODEC_SBC_DecodeFrame()
309 context->common.frameInfo.crc)); in OI_CODEC_SBC_DecodeFrame()
317 if ((context->common.frameInfo.bitpool < SBC_MIN_BITPOOL) && in OI_CODEC_SBC_DecodeFrame()
318 !context->common.frameInfo.enhanced) { in OI_CODEC_SBC_DecodeFrame()
320 context->common.frameInfo.bitpool)); in OI_CODEC_SBC_DecodeFrame()
323 if (context->common.frameInfo.bitpool > in OI_CODEC_SBC_DecodeFrame()
324 OI_SBC_MaxBitpool(&context->common.frameInfo)) { in OI_CODEC_SBC_DecodeFrame()
326 context->common.frameInfo.bitpool, in OI_CODEC_SBC_DecodeFrame()
327 OI_SBC_MaxBitpool(&context->common.frameInfo))); in OI_CODEC_SBC_DecodeFrame()
364 OI_SBC_CalculateFrameAndHeaderlen(&context->common.frameInfo, &headerlen); in OI_CODEC_SBC_SkipFrame()
368 crc = OI_SBC_CalculateChecksum(&context->common.frameInfo, *frameData); in OI_CODEC_SBC_SkipFrame()
369 if (crc != context->common.frameInfo.crc) { in OI_CODEC_SBC_SkipFrame()
465 OI_UINT nrof_subbands = common->frameInfo.nrof_subbands; in OI_SBC_ReadSamplesJoint()