diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-02-07 01:30:05 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-02-07 01:30:05 +0000 |
| commit | ce89a2745c31fbe724c9f39dbcf064578606002b (patch) | |
| tree | 605723b08b6609d9ee64c6594d6a96228a921d18 | |
| parent | aba6ca0881d1481b4047b2d7834d70ca2eb5c64b (diff) | |
| download | rockbox-ce89a2745c31fbe724c9f39dbcf064578606002b.zip rockbox-ce89a2745c31fbe724c9f39dbcf064578606002b.tar.gz rockbox-ce89a2745c31fbe724c9f39dbcf064578606002b.tar.bz2 rockbox-ce89a2745c31fbe724c9f39dbcf064578606002b.tar.xz | |
Woops. Upon examining the diffs again I find I shouldn't have deleted that one yield() from the a52 codec.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12219 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs/a52.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/codecs/a52.c b/apps/codecs/a52.c index 028dff6..2c74a0f 100644 --- a/apps/codecs/a52.c +++ b/apps/codecs/a52.c @@ -37,6 +37,7 @@ static uint8_t buf[3840] IBSS_ATTR; static inline void output_audio(sample_t *samples) { + ci->yield(); ci->pcmbuf_insert(&samples[0], &samples[256], 256); } |