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.c218 char *next_sr_string, *temp_ptr; in usb_get_sample_rates() local
227 next_sr_string = strtok_r(rates_str, "Rates: ", &temp_ptr); in usb_get_sample_rates()
228 if (next_sr_string == NULL) { in usb_get_sample_rates()
233 min_sr = (uint32_t)atoi(next_sr_string); in usb_get_sample_rates()
234 next_sr_string = strtok_r(NULL, " ,.-", &temp_ptr); in usb_get_sample_rates()
235 if (next_sr_string == NULL) { in usb_get_sample_rates()
239 max_sr = (uint32_t)atoi(next_sr_string); in usb_get_sample_rates()
252 sr = (uint32_t)atoi(next_sr_string); in usb_get_sample_rates()
261 next_sr_string = strtok_r(NULL, " ,.-", &temp_ptr); in usb_get_sample_rates()
262 } while (next_sr_string != NULL); in usb_get_sample_rates()