Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9c4cff9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix conditional log line in MediaPlayerService" am: 1a3118f3

parents 133d51b0 1a3118f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}