1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
31 #if CONFIG_CODEC == SWCODEC
33 #include "metadata/metadata_common.h"
34 #include "metadata/metadata_parsers.h"
36 static const unsigned short a52_bitrates
[] =
38 32, 40, 48, 56, 64, 80, 96, 112, 128, 160,
39 192, 224, 256, 320, 384, 448, 512, 576, 640
42 /* Only store frame sizes for 44.1KHz - others are simply multiples
44 static const unsigned short a52_441framesizes
[] =
46 69 * 2, 70 * 2, 87 * 2, 88 * 2, 104 * 2, 105 * 2, 121 * 2,
47 122 * 2, 139 * 2, 140 * 2, 174 * 2, 175 * 2, 208 * 2, 209 * 2,
48 243 * 2, 244 * 2, 278 * 2, 279 * 2, 348 * 2, 349 * 2, 417 * 2,
49 418 * 2, 487 * 2, 488 * 2, 557 * 2, 558 * 2, 696 * 2, 697 * 2,
50 835 * 2, 836 * 2, 975 * 2, 976 * 2, 1114 * 2, 1115 * 2, 1253 * 2,
51 1254 * 2, 1393 * 2, 1394 * 2
54 #endif /* CONFIG_CODEC == SWCODEC */
57 /* Simple file type probing by looking at the filename extension. */
58 unsigned int probe_file_format(const char *filename
)
63 suffix
= strrchr(filename
, '.');
73 for (i
= 1; i
< AFMT_NUM_CODECS
; i
++)
75 /* search extension list for type */
76 const char *ext
= audio_formats
[i
].ext_list
;
80 if (strcasecmp(suffix
, ext
) == 0)
85 ext
+= strlen(ext
) + 1;
93 /* Get metadata for track - return false if parsing showed problems with the
94 * file that would prevent playback.
96 bool get_metadata(struct mp3entry
* id3
, int fd
, const char* trackname
)
98 #if CONFIG_CODEC == SWCODEC
100 unsigned long totalsamples
;
104 /* Clear the mp3entry to avoid having bogus pointers appear */
105 memset(id3
, 0, sizeof(struct mp3entry
));
107 /* Take our best guess at the codec type based on file extension */
108 id3
->codectype
= probe_file_format(trackname
);
110 /* Load codec specific track tag information and confirm the codec type. */
111 switch (id3
->codectype
)
116 if (!get_mp3_metadata(fd
, id3
, trackname
))
123 #if CONFIG_CODEC == SWCODEC
125 if (!get_flac_metadata(fd
, id3
))
133 if (!get_asf_metadata(fd
, id3
))
140 if (!get_monkeys_metadata(fd
, id3
))
144 read_ape_tags(fd
, id3
);
148 if (!get_musepack_metadata(fd
, id3
))
150 read_ape_tags(fd
, id3
);
153 case AFMT_OGG_VORBIS
:
154 if (!get_vorbis_metadata(fd
, id3
))/*detects and handles Ogg/Speex files*/
162 if (!get_speex_metadata(fd
, id3
))
170 if (!get_wave_metadata(fd
, id3
))
178 if (!get_wavpack_metadata(fd
, id3
))
181 read_ape_tags(fd
, id3
); /* use any apetag info we find */
185 /* Use the trackname part of the id3 structure as a temporary buffer */
186 buf
= (unsigned char *)id3
->path
;
188 if ((lseek(fd
, 0, SEEK_SET
) < 0) || (read(fd
, buf
, 5) < 5))
193 if ((buf
[0] != 0x0b) || (buf
[1] != 0x77))
195 logf("%s is not an A52/AC3 file\n",trackname
);
203 logf("A52: Invalid frmsizecod: %d\n",i
);
207 id3
->bitrate
= a52_bitrates
[i
>> 1];
209 id3
->filesize
= filesize(fd
);
211 switch (buf
[4] & 0xc0)
214 id3
->frequency
= 48000;
215 id3
->bytesperframe
=id3
->bitrate
* 2 * 2;
219 id3
->frequency
= 44100;
220 id3
->bytesperframe
= a52_441framesizes
[i
];
224 id3
->frequency
= 32000;
225 id3
->bytesperframe
= id3
->bitrate
* 3 * 2;
229 logf("A52: Invalid samplerate code: 0x%02x\n", buf
[4] & 0xc0);
234 /* One A52 frame contains 6 blocks, each containing 256 samples */
235 totalsamples
= id3
->filesize
/ id3
->bytesperframe
* 6 * 256;
236 id3
->length
= totalsamples
/ id3
->frequency
* 1000;
241 if (!get_mp4_metadata(fd
, id3
))
250 id3
->filesize
= filesize(fd
);
251 if (!skip_id3v2(fd
, id3
))
255 /* TODO: read the id3v2 header if it exists */
259 if (!get_sid_metadata(fd
, id3
))
265 if(!get_spc_metadata(fd
, id3
))
267 DEBUGF("get_spc_metadata error\n");
270 id3
->filesize
= filesize(fd
);
271 id3
->genre_string
= id3_get_num_genre(36);
274 if (!get_adx_metadata(fd
, id3
))
276 DEBUGF("get_adx_metadata error\n");
282 buf
= (unsigned char *)id3
->path
;
283 if ((lseek(fd
, 0, SEEK_SET
) < 0) || ((read(fd
, buf
, 8)) < 8))
285 DEBUGF("lseek or read failed\n");
289 id3
->filesize
= filesize(fd
);
290 if (memcmp(buf
,"NESM",4) && memcmp(buf
,"NSFE",4)) return false;
294 if (!get_aiff_metadata(fd
, id3
))
301 #endif /* CONFIG_CODEC == SWCODEC */
304 /* If we don't know how to read the metadata, assume we can't play
310 /* We have successfully read the metadata from the file */
313 if (cuesheet_is_enabled() && look_for_cuesheet_file(trackname
, NULL
))
315 id3
->cuesheet_type
= 1;
319 lseek(fd
, 0, SEEK_SET
);
320 strncpy(id3
->path
, trackname
, sizeof(id3
->path
));