summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
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 /apps/ChangeLog.txt
parent753c87342ecb63da03961944f13bd80d897a45d8 (diff)
downloadnuttx-bc83d262f09e8bafa77af4e2565823760a723474.tar.gz
nuttx-bc83d262f09e8bafa77af4e2565823760a723474.tar.bz2
nuttx-bc83d262f09e8bafa77af4e2565823760a723474.zip
Update ChangeLog
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 23dbe7272..c4cff4290 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -977,4 +977,10 @@
termination. From Max (2014-7-28).
* apps/system/nxplayer/nxplayer.c: Fix some error handling, update
comments, more debug output (2014-7-31).
-
+ * apps/system/nxplayer/nxplayer.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).