summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-31 16:39:29 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-31 16:39:29 -0600
commitbc83d262f09e8bafa77af4e2565823760a723474 (patch)
tree90efdf523609b7c48e9f6cbf02e264511a0ec8b7 /nuttx/ChangeLog
parent753c87342ecb63da03961944f13bd80d897a45d8 (diff)
downloadnuttx-bc83d262f09e8bafa77af4e2565823760a723474.tar.gz
nuttx-bc83d262f09e8bafa77af4e2565823760a723474.tar.bz2
nuttx-bc83d262f09e8bafa77af4e2565823760a723474.zip
Update ChangeLog
Diffstat (limited to 'nuttx/ChangeLog')
-rwxr-xr-xnuttx/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index cd895e915..4bf343527 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/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).