Home | History | Annotate | Download | only in audio

Lines Matching refs:propValue

1467     char propValue[PROPERTY_VALUE_MAX];
1468 if (property_get("audio.offload.disable", propValue, "0")) {
1469 if (atoi(propValue) != 0) {
1470 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
1490 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
1491 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
1492 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);