diff options
| author | Tomasz Malesinski <tomal@rockbox.org> | 2006-11-26 18:31:41 +0000 |
|---|---|---|
| committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-11-26 18:31:41 +0000 |
| commit | 80da8b141c4672ca4380d66094976b6342ed5071 (patch) | |
| tree | 631e9edd537ae9983524622a9e1ec82e24957280 /apps/codecs/a52.c | |
| parent | 8ef3c8a342d41c2aa5e5d8370fd4e89d4d8d937e (diff) | |
| download | rockbox-80da8b141c4672ca4380d66094976b6342ed5071.zip rockbox-80da8b141c4672ca4380d66094976b6342ed5071.tar.gz rockbox-80da8b141c4672ca4380d66094976b6342ed5071.tar.bz2 rockbox-80da8b141c4672ca4380d66094976b6342ed5071.tar.xz | |
FS#6357, patch 1: let iramcopy and bss share the same space in codecs and
plugins. Currently, in case of plugins using IRAM bss is cleared twice,
once in the loader, once in PLUGIN_IRAM_INIT. For codecs, bss is cleared only
during codec initialization. Also, removed double variables in codecs
storing a pointer to codec_api.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11606 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/a52.c')
| -rw-r--r-- | apps/codecs/a52.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/apps/codecs/a52.c b/apps/codecs/a52.c index b7190be..4f41bfe 100644 --- a/apps/codecs/a52.c +++ b/apps/codecs/a52.c @@ -28,8 +28,6 @@ CODEC_HEADER #define A52_SAMPLESPERFRAME (6*256) -struct codec_api *ci; - static a52_state_t *state; unsigned long samplesdone; unsigned long frequency; @@ -117,16 +115,8 @@ void a52_decode_data(uint8_t *start, uint8_t *end) } } -#ifdef USE_IRAM -extern char iramcopy[]; -extern char iramstart[]; -extern char iramend[]; -extern char iedata[]; -extern char iend[]; -#endif - /* this is the codec entry point */ -enum codec_status codec_start(struct codec_api *api) +enum codec_status codec_main(void) { size_t n; unsigned char *filebuf; @@ -134,19 +124,12 @@ enum codec_status codec_start(struct codec_api *api) int retval; /* Generic codec initialisation */ - ci = api; - - #ifdef USE_IRAM - ci->memcpy(iramstart, iramcopy, iramend - iramstart); - ci->memset(iedata, 0, iend - iedata); - #endif - ci->configure(DSP_SET_STEREO_MODE, (long *)STEREO_NONINTERLEAVED); ci->configure(DSP_SET_SAMPLE_DEPTH, (long *)28); ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (long *)(1024*128)); next_track: - if (codec_init(api)) { + if (codec_init()) { retval = CODEC_ERROR; goto exit; } |