5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
11 #include <pico/pico_int.h>
12 #include <pico/sound/mix.h>
15 static FILE *mp3_current_file;
16 static int mp3_file_len, mp3_file_pos;
17 static int cdda_out_pos;
18 static int decoder_active;
20 unsigned short mpeg1_l3_bitrates[16] = {
21 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320
24 int mp3_find_sync_word(const unsigned char *buf, int size)
26 const unsigned char *p, *pe;
28 /* find byte-aligned syncword - need 12 (MPEG 1,2) or 11 (MPEG 2.5) matching bits */
29 for (p = buf, pe = buf + size - 3; p <= pe; p++)
35 if ((pn & 0xf8) != 0xf8 || // currently must be MPEG1
36 (pn & 6) == 0) { // invalid layer
40 if ((pn & 0xf0) < 0x20 || (pn & 0xf0) == 0xf0 || // bitrates
41 (pn & 0x0c) != 0) { // not 44kHz
51 static int try_get_bitrate(unsigned char *buf, int buf_size)
58 offs1 = mp3_find_sync_word(buf + offs, buf_size - offs);
62 if (buf_size - offs < 4)
65 // printf("trying header %08x\n", *(int *)(buf + offs));
67 ret = mpeg1_l3_bitrates[buf[offs + 2] >> 4];
75 int mp3_get_bitrate(void *f_, int len)
77 unsigned char buf[2048];
82 memset(buf, 0, sizeof(buf));
84 fseek(f, 0, SEEK_SET);
85 ret = fread(buf, 1, sizeof(buf), f);
86 if (ret != sizeof(buf))
89 ret = try_get_bitrate(buf, sizeof(buf));
91 // try to read somewhere around the middle
92 fseek(f, len / 2, SEEK_SET);
93 fread(buf, 1, sizeof(buf), f);
94 ret = try_get_bitrate(buf, sizeof(buf));
99 //printf("bitrate: %i\n", retval);
102 fseek(f, 0, SEEK_SET);
106 void mp3_start_play(void *f_, int pos1024)
108 unsigned char buf[2048];
112 mp3_file_len = mp3_file_pos = 0;
113 mp3_current_file = NULL;
117 if (!(PicoOpt & POPT_EN_MCD_CDDA) || f == NULL) // cdda disabled or no file?
120 fseek(f, 0, SEEK_END);
121 mp3_file_len = ftell(f);
123 // search for first sync word, skipping stuff like ID3 tags
124 while (mp3_file_pos < 128*1024) {
127 fseek(f, mp3_file_pos, SEEK_SET);
128 bytes = fread(buf, 1, sizeof(buf), f);
131 offs = mp3_find_sync_word(buf, bytes);
133 mp3_file_pos += offs;
136 mp3_file_pos += bytes - 3;
141 unsigned long long pos64 = mp3_file_len - mp3_file_pos;
143 mp3_file_pos += pos64 >> 10;
146 ret = mp3dec_start(f, mp3_file_pos);
151 mp3_current_file = f;
154 mp3dec_decode(mp3_current_file, &mp3_file_pos, mp3_file_len);
157 void mp3_update(int *buffer, int length, int stereo)
159 int length_mp3, shr = 0;
160 void (*mix_samples)(int *dest_buf, short *mp3_buf, int count) = mix_16h_to_32;
162 if (mp3_current_file == NULL || mp3_file_pos >= mp3_file_len)
163 return; /* no file / EOF */
169 if (PsndRate <= 11025 + 100) {
170 mix_samples = mix_16h_to_32_s2;
171 length_mp3 <<= 2; shr = 2;
173 else if (PsndRate <= 22050 + 100) {
174 mix_samples = mix_16h_to_32_s1;
175 length_mp3 <<= 1; shr = 1;
178 if (1152 - cdda_out_pos >= length_mp3) {
179 mix_samples(buffer, cdda_out_buffer + cdda_out_pos * 2,
182 cdda_out_pos += length_mp3;
184 int ret, left = 1152 - cdda_out_pos;
187 mix_samples(buffer, cdda_out_buffer + cdda_out_pos * 2,
190 ret = mp3dec_decode(mp3_current_file, &mp3_file_pos,
193 cdda_out_pos = length_mp3 - left;
194 mix_samples(buffer + (left >> shr) * 2,
196 (cdda_out_pos >> shr) * 2);