diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-05-02 17:22:28 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2012-05-02 17:22:28 -0400 |
| commit | da6cebb6b0b17b4a75a2bd4f51b7cf70b5dafe40 (patch) | |
| tree | df0eb18120c38ec7b08d3ae1e0837f0781065e87 /firmware/font.c | |
| parent | 3d3a144cf68186fd34f7bf11181b7757c7a6018d (diff) | |
| download | rockbox-da6cebb6b0b17b4a75a2bd4f51b7cf70b5dafe40.zip rockbox-da6cebb6b0b17b4a75a2bd4f51b7cf70b5dafe40.tar.gz rockbox-da6cebb6b0b17b4a75a2bd4f51b7cf70b5dafe40.tar.bz2 rockbox-da6cebb6b0b17b4a75a2bd4f51b7cf70b5dafe40.tar.xz | |
Use buflib for the allocation of voice PCM resources.
Buffers are not allocated and thread is not created until the first
call where voice is required.
Adds a different callback (sync_callback) to buflib so that other
sorts of synchonization are possible, such as briefly locking-out the
PCM callback for a buffer move. It's sort of a messy addition but it
is needed so voice decoding won't have to be stopped when its buffer
is moved.
Change-Id: I4d4d8c35eed5dd15fb7ee7df9323af3d036e92b3
Diffstat (limited to 'firmware/font.c')
| -rw-r--r-- | firmware/font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/font.c b/firmware/font.c index 895ce15..4b21f0f 100644 --- a/firmware/font.c +++ b/firmware/font.c @@ -141,7 +141,7 @@ void font_lock(int font_id, bool lock) lock_font_handle(buflib_allocations[font_id], lock); } -static struct buflib_callbacks buflibops = {buflibmove_callback, NULL }; +static struct buflib_callbacks buflibops = {buflibmove_callback, NULL, NULL }; static inline struct font *pf_from_handle(int handle) { |