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
,
99 #if CONFIG_CODEC == SWCODEC
101 unsigned long totalsamples
;
105 /* Take our best guess at the codec type based on file extension */
106 id3
->codectype
= probe_file_format(trackname
);
108 /* Load codec specific track tag information and confirm the codec type. */
109 switch (id3
->codectype
)
114 if (!get_mp3_metadata(fd
, id3
, trackname
, v1first
))
121 #if CONFIG_CODEC == SWCODEC
123 if (!get_flac_metadata(fd
, id3
))
131 if (!get_asf_metadata(fd
, id3
))
138 if (!get_monkeys_metadata(fd
, id3
))
142 read_ape_tags(fd
, id3
);
146 if (!get_musepack_metadata(fd
, id3
))
148 read_ape_tags(fd
, id3
);
151 case AFMT_OGG_VORBIS
:
152 if (!get_vorbis_metadata(fd
, id3
))/*detects and handles Ogg/Speex files*/
160 if (!get_speex_metadata(fd
, id3
))
168 if (!get_wave_metadata(fd
, id3
))
176 if (!get_wavpack_metadata(fd
, id3
))
179 read_ape_tags(fd
, id3
); /* use any apetag info we find */
183 /* Use the trackname part of the id3 structure as a temporary buffer */
184 buf
= (unsigned char *)id3
->path
;
186 if ((lseek(fd
, 0, SEEK_SET
) < 0) || (read(fd
, buf
, 5) < 5))
191 if ((buf
[0] != 0x0b) || (buf
[1] != 0x77))
193 logf("%s is not an A52/AC3 file\n",trackname
);
201 logf("A52: Invalid frmsizecod: %d\n",i
);
205 id3
->bitrate
= a52_bitrates
[i
>> 1];
207 id3
->filesize
= filesize(fd
);
209 switch (buf
[4] & 0xc0)
212 id3
->frequency
= 48000;
213 id3
->bytesperframe
=id3
->bitrate
* 2 * 2;
217 id3
->frequency
= 44100;
218 id3
->bytesperframe
= a52_441framesizes
[i
];
222 id3
->frequency
= 32000;
223 id3
->bytesperframe
= id3
->bitrate
* 3 * 2;
227 logf("A52: Invalid samplerate code: 0x%02x\n", buf
[4] & 0xc0);
232 /* One A52 frame contains 6 blocks, each containing 256 samples */
233 totalsamples
= id3
->filesize
/ id3
->bytesperframe
* 6 * 256;
234 id3
->length
= totalsamples
/ id3
->frequency
* 1000;
239 if (!get_mp4_metadata(fd
, id3
))
248 id3
->filesize
= filesize(fd
);
249 if (!skip_id3v2(fd
, id3
))
253 /* TODO: read the id3v2 header if it exists */
257 if (!get_sid_metadata(fd
, id3
))
263 if(!get_spc_metadata(fd
, id3
))
265 DEBUGF("get_spc_metadata error\n");
268 id3
->filesize
= filesize(fd
);
269 id3
->genre_string
= id3_get_num_genre(36);
272 if (!get_adx_metadata(fd
, id3
))
274 DEBUGF("get_adx_metadata error\n");
280 buf
= (unsigned char *)id3
->path
;
281 if ((lseek(fd
, 0, SEEK_SET
) < 0) || ((read(fd
, buf
, 8)) < 8))
283 DEBUGF("lseek or read failed\n");
287 id3
->filesize
= filesize(fd
);
288 if (memcmp(buf
,"NESM",4) && memcmp(buf
,"NSFE",4)) return false;
292 if (!get_aiff_metadata(fd
, id3
))
299 #endif /* CONFIG_CODEC == SWCODEC */
302 /* If we don't know how to read the metadata, assume we can't play
308 /* We have successfully read the metadata from the file */
311 if (cuesheet_is_enabled() && look_for_cuesheet_file(trackname
, NULL
))
313 id3
->cuesheet_type
= 1;
317 lseek(fd
, 0, SEEK_SET
);
318 strncpy(id3
->path
, trackname
, sizeof(id3
->path
));