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

Commit dc7747d7 authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Bug 5234242 audio continues after discontinuity

Reduce to 8 buffers of 10 packets from 16 buffers of 20 packets.

Change-Id: Ifdb5e15535989fbb6e5e1b70d5f9f71dc66a5c83
parent ad8e8bfe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -41,8 +41,8 @@ struct NuPlayer::NuPlayerStreamListener : public BnStreamListener {

private:
    enum {
        kNumBuffers = 16,
        kBufferSize = 188 * 20
        kNumBuffers = 8,
        kBufferSize = 188 * 10
    };

    struct QueueEntry {