diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-19 15:27:10 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-19 15:27:10 +0000 |
| commit | cfe51fb0e85159d252e7bddd45d24b4a409ce1a1 (patch) | |
| tree | 191e4965df22bab4ad6785ecac22cfbf8e6a5438 /apps/codecs | |
| parent | 91647264f8b05bf0fe5c58926a2e886b5fd85fe6 (diff) | |
| download | rockbox-cfe51fb0e85159d252e7bddd45d24b4a409ce1a1.zip rockbox-cfe51fb0e85159d252e7bddd45d24b4a409ce1a1.tar.gz rockbox-cfe51fb0e85159d252e7bddd45d24b4a409ce1a1.tar.bz2 rockbox-cfe51fb0e85159d252e7bddd45d24b4a409ce1a1.tar.xz | |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/aac.c b/apps/codecs/aac.c index 7326775..e9ff967 100644 --- a/apps/codecs/aac.c +++ b/apps/codecs/aac.c @@ -118,6 +118,8 @@ next_track: } else { sound_samples_done = 0; } + } else { + sound_samples_done = 0; } if (i == 0) |