Loading hal/audio_hw.c +1 −1 Original line number Diff line number Diff line Loading @@ -4518,7 +4518,7 @@ static ssize_t out_write(struct audio_stream_out *stream, const void *buffer, if (ret < 0) ret = -errno; ALOGVV("%s: writing buffer (%zu bytes) to compress device returned %zd", __func__, bytes, ret); ALOGVV("%s: writing buffer (%zu bytes) to compress device returned %d", __func__, bytes, (int)ret); /*msg to cb thread only if non blocking write is enabled*/ if (ret >= 0 && ret < (ssize_t)bytes && out->non_blocking) { ALOGD("No space available in compress driver, post msg to cb thread"); Loading Loading
hal/audio_hw.c +1 −1 Original line number Diff line number Diff line Loading @@ -4518,7 +4518,7 @@ static ssize_t out_write(struct audio_stream_out *stream, const void *buffer, if (ret < 0) ret = -errno; ALOGVV("%s: writing buffer (%zu bytes) to compress device returned %zd", __func__, bytes, ret); ALOGVV("%s: writing buffer (%zu bytes) to compress device returned %d", __func__, bytes, (int)ret); /*msg to cb thread only if non blocking write is enabled*/ if (ret >= 0 && ret < (ssize_t)bytes && out->non_blocking) { ALOGD("No space available in compress driver, post msg to cb thread"); Loading