Home | History | Annotate | Download | only in audio

Lines Matching defs:propValue

1484     char propValue[PROPERTY_VALUE_MAX];
1485 if (property_get("audio.offload.disable", propValue, "0")) {
1486 if (atoi(propValue) != 0) {
1487 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
1507 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
1508 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
1509 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);