Home
last modified time | relevance | path

Searched refs:next_sr_string (Results 1 – 1 of 1) sorted by relevance

/hardware/qcom/audio/hal/audio_extn/
Dusb.c229 char *next_sr_string, *temp_ptr; in usb_get_sample_rates() local
238 next_sr_string = strtok_r(rates_str, "Rates: ", &temp_ptr); in usb_get_sample_rates()
239 if (next_sr_string == NULL) { in usb_get_sample_rates()
244 min_sr = (uint32_t)atoi(next_sr_string); in usb_get_sample_rates()
245 next_sr_string = strtok_r(NULL, " ,.-", &temp_ptr); in usb_get_sample_rates()
246 if (next_sr_string == NULL) { in usb_get_sample_rates()
250 max_sr = (uint32_t)atoi(next_sr_string); in usb_get_sample_rates()
264 sr = (uint32_t)atoi(next_sr_string); in usb_get_sample_rates()
274 next_sr_string = strtok_r(NULL, " ,.-", &temp_ptr); in usb_get_sample_rates()
275 } while (next_sr_string != NULL); in usb_get_sample_rates()