summaryrefslogtreecommitdiff
path: root/apps/buffering.c
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2020-12-09 13:17:05 -0500
committerSolomon Peachy <pizza@shaftnet.org>2020-12-25 17:47:19 +0000
commitca09f91f647f6677fea7804930d7d1b2c876f76e (patch)
tree03f6b4e5659deb7f52b315478d8106babaf358ab /apps/buffering.c
parentb5e6c30a61047e89f6cb1299a81453a80b79cc37 (diff)
downloadrockbox-ca09f91f647f6677fea7804930d7d1b2c876f76e.tar.gz
rockbox-ca09f91f647f6677fea7804930d7d1b2c876f76e.zip
Fix deadlocks when trying to buffer large album art.
Internally, buffering tries to load the entire album art file into the audio buffer, which will fail if the file is larger than the buffer. Playback.c interprets a file failing to buffer to mean that the buffer is full, so it waits for more space and tries again. This results in a deadlock since the file will never fit. Change bufopen to return a new error condition when an image file will not fit on the buffer because it is too large: ERR_BITMAP_TOO_LARGE. Note that we arbitrarily set "too large" to be within 64KB of the entire buffer size or larger, this could be adjusted if needed. Change audio_load_albumart to pass through error messages from bufopen. In playback.c, check to see why audio_load_albumart fails. If it fails because the file is too large to buffer, simply ignore the file. If it fails because the file would fit but the buffer is full, try again later. Change-Id: I66799ae26f124b495e1522fce7285332f4cf986f
Diffstat (limited to 'apps/buffering.c')
-rwxr-xr-x[-rw-r--r--]apps/buffering.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index 9ffd35714c..3adbc4a6b9 100644..100755
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -999,7 +999,14 @@ int bufopen(const char *file, off_t offset, enum data_type type,
999 DEBUGF("%s(): failed to add handle\n", __func__); 999 DEBUGF("%s(): failed to add handle\n", __func__);
1000 mutex_unlock(&llist_mutex); 1000 mutex_unlock(&llist_mutex);
1001 close(fd); 1001 close(fd);
1002
1003 /*warn playback.c if it is trying to buffer too large of an image*/
1004 if(type == TYPE_BITMAP && padded_size >= buffer_len - 64*1024)
1005 {
1006 return ERR_BITMAP_TOO_LARGE;
1007 }
1002 return ERR_BUFFER_FULL; 1008 return ERR_BUFFER_FULL;
1009
1003 } 1010 }
1004 1011
1005 handle_id = h->id; 1012 handle_id = h->id;