summaryrefslogtreecommitdiff
path: root/shared-module/audiomp3/MP3Decoder.h
diff options
context:
space:
mode:
authordherrada <33632497+dherrada@users.noreply.github.com>2020-07-21 16:18:51 -0400
committerGitHub <noreply@github.com>2020-07-21 16:18:51 -0400
commit9e3fa863f1d0dcf8eae54554ffc7016eaa6de157 (patch)
tree5130e268b1fad9dec287e93e3505a5a9a61a9249 /shared-module/audiomp3/MP3Decoder.h
parent612c6bb86b8762aa9388566eb69db9bbe4e8bbe4 (diff)
parente047ea287f6658f1a1fd10ab31f45f25bce846c1 (diff)
Merge branch 'main' into type_hints
Diffstat (limited to 'shared-module/audiomp3/MP3Decoder.h')
-rw-r--r--shared-module/audiomp3/MP3Decoder.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared-module/audiomp3/MP3Decoder.h b/shared-module/audiomp3/MP3Decoder.h
index 9ee1d0949..f91f102a2 100644
--- a/shared-module/audiomp3/MP3Decoder.h
+++ b/shared-module/audiomp3/MP3Decoder.h
@@ -28,6 +28,7 @@
#ifndef MICROPY_INCLUDED_SHARED_MODULE_AUDIOIO_MP3FILE_H
#define MICROPY_INCLUDED_SHARED_MODULE_AUDIOIO_MP3FILE_H
+#include "supervisor/background_callback.h"
#include "extmod/vfs_fat.h"
#include "py/obj.h"
@@ -36,6 +37,7 @@
typedef struct {
mp_obj_base_t base;
struct _MP3DecInfo *decoder;
+ background_callback_t inbuf_fill_cb;
uint8_t* inbuf;
uint32_t inbuf_length;
uint32_t inbuf_offset;