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

Commit aeb38af8 authored by Andreas Huber's avatar Andreas Huber Committed by Android Git Automerger
Browse files

am d030359f: Merge "Instead of not feeding the AudioTrack any data after EOS,...

am d030359f: Merge "Instead of not feeding the AudioTrack any data after EOS, play silence instead." into honeycomb

* commit 'd030359ff10a031c762d4f229d9c1bdfd366cb50':
  Instead of not feeding the AudioTrack any data after EOS, play silence instead.
parents a0c51bbd 6e1cc6e6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -286,7 +286,9 @@ size_t AudioPlayer::fillBuffer(void *data, size_t size) {
    }

    if (mReachedEOS) {
        return 0;
        memset(data, 0, size);

        return size;
    }

    size_t size_done = 0;