summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-03-19 15:27:10 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-03-19 15:27:10 +0000
commitcfe51fb0e85159d252e7bddd45d24b4a409ce1a1 (patch)
tree191e4965df22bab4ad6785ecac22cfbf8e6a5438 /apps/codecs
parent91647264f8b05bf0fe5c58926a2e886b5fd85fe6 (diff)
downloadrockbox-cfe51fb0e85159d252e7bddd45d24b4a409ce1a1.tar.gz
rockbox-cfe51fb0e85159d252e7bddd45d24b4a409ce1a1.zip
Fix FS#11127. r25165 introduced a bug to the aac codec, which lead to not resetting the time position.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25249 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/aac.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/aac.c b/apps/codecs/aac.c
index 73267752c9..e9ff967d6c 100644
--- a/apps/codecs/aac.c
+++ b/apps/codecs/aac.c
@@ -118,6 +118,8 @@ next_track:
118 } else { 118 } else {
119 sound_samples_done = 0; 119 sound_samples_done = 0;
120 } 120 }
121 } else {
122 sound_samples_done = 0;
121 } 123 }
122 124
123 if (i == 0) 125 if (i == 0)