From 41af511655d669c670b4ea348f60134f1ec222b4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 31 Jul 2014 16:39:29 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index cd895e9155c..4bf34352749 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7920,3 +7920,11 @@ (2014-7-31). * sched/sem_wait.c: Use set_errno() and get_errno(). Direct access inside the OS may not be supported in the future (2014-7-31). + * drivers/audio/audio_null.c, vs1053.c, wm8904.c, include/nuttx/audio/audio.h, + libc/audio/lib_buffer.c: Change how the end of the audio stream is + detected by the leaf audio component. This used by be done by looking + for the first partial buffer. That does not work with the in-place + sub-sampling performed by the PCM decoder: That always reduces the + size of the buffer so that all buffers only partially filled by the + time they get to the leaf. Now, a flag is set in the audio buffer + flags set to indicate the final buffer in the stream (2014-7-31).