Loading media/libmediaplayerservice/MediaPlayerService.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -2683,7 +2683,7 @@ size_t MediaPlayerService::AudioOutput::CallbackData::onMoreData(const AudioTrac // This is a benign busy-wait, with the next data request generated 10 ms or more later; // nevertheless for power reasons, we don't want to see too many of these. ALOGV_IF(actualSize == 0 && buffer->size > 0, "callbackwrapper: empty buffer returned"); ALOGV_IF(actualSize == 0 && buffer.size() > 0, "callbackwrapper: empty buffer returned"); unlock(); return actualSize; } Loading Loading
media/libmediaplayerservice/MediaPlayerService.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -2683,7 +2683,7 @@ size_t MediaPlayerService::AudioOutput::CallbackData::onMoreData(const AudioTrac // This is a benign busy-wait, with the next data request generated 10 ms or more later; // nevertheless for power reasons, we don't want to see too many of these. ALOGV_IF(actualSize == 0 && buffer->size > 0, "callbackwrapper: empty buffer returned"); ALOGV_IF(actualSize == 0 && buffer.size() > 0, "callbackwrapper: empty buffer returned"); unlock(); return actualSize; } Loading