Fix makefile conditions
[maemo-rb.git] / apps / codecs / gbs.c
blobdef05ed3510f277af7d3ceb21bbbb8515a413be3
2 /* Ripped off from Game_Music_Emu 0.5.2. http://www.slack.net/~ant/ */
4 #include <codecs/lib/codeclib.h>
5 #include "libgme/gbs_emu.h"
7 CODEC_HEADER
9 /* Maximum number of bytes to process in one iteration */
10 #define CHUNK_SIZE (1024*2)
12 static int16_t samples[CHUNK_SIZE] IBSS_ATTR;
13 static struct Gbs_Emu gbs_emu;
15 /****************** rockbox interface ******************/
17 static void set_codec_track(int t) {
18 Gbs_start_track(&gbs_emu, t);
20 /* for loop mode we disable track limits */
21 if (!ci->loop_track()) {
22 Track_set_fade(&gbs_emu, Track_get_length( &gbs_emu, t ), 4000);
24 ci->set_elapsed(t*1000); /* t is track no to display */
27 /* this is the codec entry point */
28 enum codec_status codec_main(enum codec_entry_call_reason reason)
30 if (reason == CODEC_LOAD) {
31 /* we only render 16 bits */
32 ci->configure(DSP_SET_SAMPLE_DEPTH, 16);
34 /* 44 Khz, Interleaved stereo */
35 ci->configure(DSP_SET_FREQUENCY, 44100);
36 ci->configure(DSP_SET_STEREO_MODE, STEREO_INTERLEAVED);
38 Gbs_init(&gbs_emu);
39 Gbs_set_sample_rate(&gbs_emu, 44100);
42 return CODEC_OK;
45 /* this is called for each file to process */
46 enum codec_status codec_run(void)
48 blargg_err_t err;
49 uint8_t *buf;
50 size_t n;
51 intptr_t param;
52 int track = 0;
54 DEBUGF("GBS: next_track\n");
55 if (codec_init()) {
56 return CODEC_ERROR;
59 codec_set_replaygain(ci->id3);
61 /* Read the entire file */
62 DEBUGF("GBS: request file\n");
63 ci->seek_buffer(0);
64 buf = ci->request_buffer(&n, ci->filesize);
65 if (!buf || n < (size_t)ci->filesize) {
66 DEBUGF("GBS: file load failed\n");
67 return CODEC_ERROR;
70 if ((err = Gbs_load_mem(&gbs_emu, buf, ci->filesize))) {
71 DEBUGF("GBS: Gbs_load_mem failed (%s)\n", err);
72 return CODEC_ERROR;
75 /* Update internal track count */
76 if (gbs_emu.m3u.size > 0)
77 gbs_emu.track_count = gbs_emu.m3u.size;
79 next_track:
80 set_codec_track(track);
82 /* The main decoder loop */
83 while (1) {
84 enum codec_command_action action = ci->get_command(&param);
86 if (action == CODEC_ACTION_HALT)
87 break;
89 if (action == CODEC_ACTION_SEEK_TIME) {
90 track = param/1000;
91 ci->seek_complete();
92 if (track >= gbs_emu.track_count) break;
93 goto next_track;
96 /* Generate audio buffer */
97 err = Gbs_play(&gbs_emu, CHUNK_SIZE, samples);
98 if (err || Track_ended(&gbs_emu)) {
99 track++;
100 if (track >= gbs_emu.track_count) break;
101 goto next_track;
104 ci->pcmbuf_insert(samples, NULL, CHUNK_SIZE >> 1);
107 return CODEC_OK;