summaryrefslogtreecommitdiff
path: root/py/stream.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2019-09-13 09:33:36 -0700
committerGitHub <noreply@github.com>2019-09-13 09:33:36 -0700
commit157429f20de8ed6828941c98b9c90c4a1b587c76 (patch)
treea3853967292673994e13db1f604818eaafa1e966 /py/stream.c
parent3422e53bd12025d584e7d69f67ea63b9e98f9c36 (diff)
parent523025ce8c96e8526e93a051436f24877e65f4a6 (diff)
Merge pull request #2135 from jepler/audio-stuttering-background5.0.0-alpha.3
Reduce audio stuttering by running background tasks
Diffstat (limited to 'py/stream.c')
-rw-r--r--py/stream.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/stream.c b/py/stream.c
index 08c749cc3..1d25f6470 100644
--- a/py/stream.c
+++ b/py/stream.c
@@ -341,6 +341,9 @@ STATIC mp_obj_t stream_readall(mp_obj_t self_in) {
p = vstr_extend(&vstr, DEFAULT_BUFFER_SIZE);
current_read = DEFAULT_BUFFER_SIZE;
}
+ #ifdef RUN_BACKGROUND_TASKS
+ RUN_BACKGROUND_TASKS;
+ #endif
}
vstr.len = total_size;