processEvents before starting autodetection.
[Rockbox.git] / apps / metadata.c
bloba8821b29dfff01db74237e439f3ed14659f53630
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Dave Chapman
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include <stdio.h>
20 #include <string.h>
21 #include <stdlib.h>
22 #include <ctype.h>
23 #include <inttypes.h>
25 #include "system.h"
26 #include "playback.h"
27 #include "debug.h"
28 #include "logf.h"
29 #include "cuesheet.h"
30 #include "metadata.h"
32 #if CONFIG_CODEC == SWCODEC
34 /* For trailing tag stripping */
35 #include "buffering.h"
37 #include "metadata/metadata_common.h"
38 #include "metadata/metadata_parsers.h"
40 #endif /* CONFIG_CODEC == SWCODEC */
43 /* Simple file type probing by looking at the filename extension. */
44 unsigned int probe_file_format(const char *filename)
46 char *suffix;
47 unsigned int i;
49 suffix = strrchr(filename, '.');
51 if (suffix == NULL)
53 return AFMT_UNKNOWN;
56 /* skip '.' */
57 suffix++;
59 for (i = 1; i < AFMT_NUM_CODECS; i++)
61 /* search extension list for type */
62 const char *ext = audio_formats[i].ext_list;
66 if (strcasecmp(suffix, ext) == 0)
68 return i;
71 ext += strlen(ext) + 1;
73 while (*ext != '\0');
76 return AFMT_UNKNOWN;
79 /* Get metadata for track - return false if parsing showed problems with the
80 * file that would prevent playback.
82 bool get_metadata(struct mp3entry* id3, int fd, const char* trackname)
84 #if CONFIG_CODEC == SWCODEC
85 unsigned char* buf;
86 #endif
88 /* Clear the mp3entry to avoid having bogus pointers appear */
89 memset(id3, 0, sizeof(struct mp3entry));
91 /* Take our best guess at the codec type based on file extension */
92 id3->codectype = probe_file_format(trackname);
94 /* Load codec specific track tag information and confirm the codec type. */
95 switch (id3->codectype)
97 case AFMT_MPA_L1:
98 case AFMT_MPA_L2:
99 case AFMT_MPA_L3:
100 if (!get_mp3_metadata(fd, id3, trackname))
102 return false;
105 break;
107 #if CONFIG_CODEC == SWCODEC
108 case AFMT_FLAC:
109 if (!get_flac_metadata(fd, id3))
111 return false;
114 break;
116 case AFMT_WMA:
117 if (!get_asf_metadata(fd, id3))
119 return false;
121 break;
123 case AFMT_APE:
124 if (!get_monkeys_metadata(fd, id3))
126 return false;
128 read_ape_tags(fd, id3);
129 break;
131 case AFMT_MPC:
132 if (!get_musepack_metadata(fd, id3))
133 return false;
134 read_ape_tags(fd, id3);
135 break;
137 case AFMT_OGG_VORBIS:
138 if (!get_ogg_metadata(fd, id3))/*detects and handles Ogg/Speex files*/
140 return false;
143 break;
145 case AFMT_SPEEX:
146 if (!get_ogg_metadata(fd, id3))
148 return false;
151 break;
153 case AFMT_PCM_WAV:
154 if (!get_wave_metadata(fd, id3))
156 return false;
159 break;
161 case AFMT_WAVPACK:
162 if (!get_wavpack_metadata(fd, id3))
164 return false;
167 read_ape_tags(fd, id3); /* use any apetag info we find */
168 break;
170 case AFMT_A52:
171 if (!get_a52_metadata(fd, id3))
173 return false;
176 break;
178 case AFMT_ALAC:
179 case AFMT_AAC:
180 if (!get_mp4_metadata(fd, id3))
182 return false;
185 break;
187 case AFMT_MOD:
188 if (!get_mod_metadata(fd, id3))
190 return false;
193 break;
195 case AFMT_SHN:
196 id3->vbr = true;
197 id3->filesize = filesize(fd);
198 if (!skip_id3v2(fd, id3))
200 return false;
202 /* TODO: read the id3v2 header if it exists */
203 break;
205 case AFMT_SID:
206 if (!get_sid_metadata(fd, id3))
208 return false;
210 break;
212 case AFMT_SPC:
213 if (!get_spc_metadata(fd, id3))
215 DEBUGF("get_spc_metadata error\n");
216 return false;
218 id3->filesize = filesize(fd);
219 id3->genre_string = id3_get_num_genre(36);
220 break;
222 case AFMT_ADX:
223 if (!get_adx_metadata(fd, id3))
225 DEBUGF("get_adx_metadata error\n");
226 return false;
229 break;
231 case AFMT_NSF:
232 buf = (unsigned char *)id3->path;
233 if ((lseek(fd, 0, SEEK_SET) < 0) || ((read(fd, buf, 8)) < 8))
235 DEBUGF("lseek or read failed\n");
236 return false;
238 id3->vbr = false;
239 id3->filesize = filesize(fd);
240 if (memcmp(buf,"NESM",4) && memcmp(buf,"NSFE",4)) return false;
241 break;
243 case AFMT_AIFF:
244 if (!get_aiff_metadata(fd, id3))
246 return false;
249 break;
251 #endif /* CONFIG_CODEC == SWCODEC */
253 default:
254 /* If we don't know how to read the metadata, assume we can't play
255 the file */
256 return false;
257 break;
260 /* We have successfully read the metadata from the file */
262 #ifndef __PCTOOL__
263 if (cuesheet_is_enabled() && look_for_cuesheet_file(trackname, NULL))
265 id3->cuesheet_type = 1;
267 #endif
269 lseek(fd, 0, SEEK_SET);
270 strncpy(id3->path, trackname, sizeof(id3->path));
272 return true;
275 #if CONFIG_CODEC == SWCODEC
276 void strip_tags(int handle_id)
278 static const unsigned char tag[] = "TAG";
279 static const unsigned char apetag[] = "APETAGEX";
280 size_t len, version;
281 void *tail;
283 if (bufgettail(handle_id, 128, &tail) != 128)
284 return;
286 if (memcmp(tail, tag, 3) == 0)
288 /* Skip id3v1 tag */
289 logf("Cutting off ID3v1 tag");
290 bufcuttail(handle_id, 128);
293 /* Get a new tail, as the old one may have been cut */
294 if (bufgettail(handle_id, 32, &tail) != 32)
295 return;
297 /* Check for APE tag (look for the APE tag footer) */
298 if (memcmp(tail, apetag, 8) != 0)
299 return;
301 /* Read the version and length from the footer */
302 version = get_long_le(&((unsigned char *)tail)[8]);
303 len = get_long_le(&((unsigned char *)tail)[12]);
304 if (version == 2000)
305 len += 32; /* APEv2 has a 32 byte header */
307 /* Skip APE tag */
308 logf("Cutting off APE tag (%ldB)", len);
309 bufcuttail(handle_id, len);
311 #endif /* CONFIG_CODEC == SWCODEC */