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()
216 gMicAutoParam.type = in NitroMain()
217 (MICSamplingType)((gMicAutoParam.type + 1) % MIC_SAMPLING_TYPE_MAX); in NitroMain()
218 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
227 gMicAutoParam.rate = (u32)(gMicAutoParam.rate / 2); in NitroMain()
228 if (gMicAutoParam.rate < MY_SAMPLING_RATE_LIMIT) in NitroMain()
230 gMicAutoParam.rate = MY_SAMPLING_RATE_LIMIT; in NitroMain()
233 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
241 gMicAutoParam.rate = (u32)(gMicAutoParam.rate * 2); in NitroMain()
242 if (gMicAutoParam.rate < MY_SAMPLING_RATE_LIMIT) in NitroMain()
244 gMicAutoParam.rate = MY_SAMPLING_RATE_LIMIT; in NitroMain()
246 (void)MIC_StartAutoSampling(&gMicAutoParam); in NitroMain()
253 SetDrawData(MIC_GetLastSamplingAddress(), gMicAutoParam.type); in NitroMain()
346 if ((gMicAutoParam.type == MIC_SAMPLING_TYPE_SIGNED_8BIT) || in Draw3D()
347 (gMicAutoParam.type == MIC_SAMPLING_TYPE_SIGNED_12BIT) || in Draw3D()
348 (gMicAutoParam.type == MIC_SAMPLING_TYPE_SIGNED_12BIT_FILTER_OFF)) in Draw3D()
588 OS_Printf(" sampling-span: %d , bit-range: ", gMicAutoParam.rate); in PrintfVariableData()
589 switch (gMicAutoParam.type) in PrintfVariableData()
610 if (gMicAutoParam.loop_enable) in PrintfVariableData()