mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 09:32:40 -05:00
This was a bad change on my part earlier. Do not immediately start buffering codecs when they are bufopened
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15486 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
405380e57f
commit
287f14b8ca
1 changed files with 1 additions and 1 deletions
|
|
@ -849,7 +849,7 @@ int bufopen(const char *file, size_t offset, enum data_type type)
|
|||
h->available = 0;
|
||||
h->type = type;
|
||||
|
||||
if (type == TYPE_CODEC || type == TYPE_CUESHEET || type == TYPE_IMAGE) {
|
||||
if (type == TYPE_CUESHEET || type == TYPE_IMAGE) {
|
||||
h->fd = fd;
|
||||
/* Immediately start buffering those */
|
||||
LOGFQUEUE("buffering >| Q_BUFFER_HANDLE");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue