Lines Matching refs:gMicAutoParam

73 static MICAutoParam gMicAutoParam;  variable
132 gMicAutoParam.type = MIC_SAMPLING_TYPE_8BIT; in NitroMain()
133 gMicAutoParam.buffer = (void *)gMicData; in NitroMain()
134 gMicAutoParam.size = TEST_BUFFER_SIZE; in NitroMain()
135 gMicAutoParam.rate = MIC_SAMPLING_RATE_8K; in NitroMain()
136 gMicAutoParam.loop_enable = TRUE; in NitroMain()
137 gMicAutoParam.full_callback = NULL; in NitroMain()
138 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
215 gMicAutoParam.type = in NitroMain()
216 (MICSamplingType)((gMicAutoParam.type + 1) % MIC_SAMPLING_TYPE_MAX); in NitroMain()
217 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
226 gMicAutoParam.rate = (u32)(gMicAutoParam.rate / 2); in NitroMain()
227 if (gMicAutoParam.rate < MY_SAMPLING_RATE_LIMIT) in NitroMain()
229 gMicAutoParam.rate = MY_SAMPLING_RATE_LIMIT; in NitroMain()
232 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
240 gMicAutoParam.rate = (u32)(gMicAutoParam.rate * 2); in NitroMain()
241 if (gMicAutoParam.rate < MY_SAMPLING_RATE_LIMIT) in NitroMain()
243 gMicAutoParam.rate = MY_SAMPLING_RATE_LIMIT; in NitroMain()
245 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
252 SetDrawData(MIC_GetLastSamplingAddress(), gMicAutoParam.type); in NitroMain()
345 if ((gMicAutoParam.type == MIC_SAMPLING_TYPE_SIGNED_8BIT) || in Draw3D()
346 (gMicAutoParam.type == MIC_SAMPLING_TYPE_SIGNED_12BIT) || in Draw3D()
347 (gMicAutoParam.type == MIC_SAMPLING_TYPE_SIGNED_12BIT_FILTER_OFF)) in Draw3D()
587 OS_Printf(" sampling-span: %d , bit-range: ", gMicAutoParam.rate); in PrintfVariableData()
588 switch (gMicAutoParam.type) in PrintfVariableData()
609 if (gMicAutoParam.loop_enable) in PrintfVariableData()