2003-02-07 09:41:57 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef ID3_H
|
|
|
|
#define ID3_H
|
|
|
|
|
2005-07-05 19:55:40 +00:00
|
|
|
#include <stdbool.h>
|
2005-06-18 16:24:27 +00:00
|
|
|
#include "config.h"
|
2003-02-07 09:41:57 +00:00
|
|
|
#include "file.h"
|
|
|
|
|
2005-06-18 16:24:27 +00:00
|
|
|
/* Audio file types. */
|
|
|
|
/* NOTE: When adding new audio types, also add to codec_labels[] in id3.c */
|
|
|
|
enum {
|
2005-07-05 15:19:22 +00:00
|
|
|
AFMT_UNKNOWN = 1, /* Unknown file format */
|
2005-06-18 16:24:27 +00:00
|
|
|
|
|
|
|
#if CONFIG_HWCODEC==MASNONE
|
|
|
|
AFMT_MPA_L1, /* MPEG Audio layer 1 */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
AFMT_MPA_L2, /* MPEG Audio layer 2 */
|
|
|
|
AFMT_MPA_L3, /* MPEG Audio layer 3 */
|
|
|
|
|
|
|
|
#if CONFIG_HWCODEC==MASNONE
|
|
|
|
AFMT_PCM_WAV, /* Uncompressed PCM in a WAV file */
|
|
|
|
AFMT_OGG_VORBIS, /* Ogg Vorbis */
|
|
|
|
AFMT_FLAC, /* FLAC */
|
|
|
|
AFMT_MPC, /* Musepack */
|
|
|
|
AFMT_AAC, /* AAC */
|
|
|
|
AFMT_APE, /* Monkey's Audio */
|
|
|
|
AFMT_WMA, /* Windows Media Audio */
|
|
|
|
AFMT_A52, /* A/52 (aka AC3) audio */
|
|
|
|
AFMT_REAL, /* Realaudio */
|
|
|
|
AFMT_WAVPACK, /* WavPack */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
AFMT_ENDMARKER /* THIS MUST BE THE LAST VALUE */
|
|
|
|
};
|
|
|
|
|
2003-02-07 09:41:57 +00:00
|
|
|
struct mp3entry {
|
|
|
|
char path[MAX_PATH];
|
2005-07-24 15:32:28 +00:00
|
|
|
char* title;
|
|
|
|
char* artist;
|
|
|
|
char* album;
|
|
|
|
char* genre_string;
|
|
|
|
char* track_string;
|
|
|
|
char* year_string;
|
|
|
|
char* composer;
|
2003-02-07 09:41:57 +00:00
|
|
|
int tracknum;
|
|
|
|
int version;
|
|
|
|
int layer;
|
2005-06-18 16:24:27 +00:00
|
|
|
int codectype;
|
2003-02-07 09:41:57 +00:00
|
|
|
int year;
|
|
|
|
unsigned char id3version;
|
|
|
|
unsigned char genre;
|
|
|
|
unsigned int bitrate;
|
|
|
|
unsigned int frequency;
|
|
|
|
unsigned int id3v2len;
|
|
|
|
unsigned int id3v1len;
|
|
|
|
unsigned int first_frame_offset; /* Byte offset to first real MP3 frame.
|
|
|
|
Used for skipping leading garbage to
|
|
|
|
avoid gaps between tracks. */
|
2003-03-10 18:05:01 +00:00
|
|
|
unsigned int vbr_header_pos;
|
2003-02-07 09:41:57 +00:00
|
|
|
unsigned int filesize; /* in bytes */
|
|
|
|
unsigned int length; /* song length */
|
|
|
|
unsigned int elapsed; /* ms played */
|
2003-03-10 14:55:31 +00:00
|
|
|
|
2005-07-05 19:55:40 +00:00
|
|
|
int lead_trim; /* Number of samples to skip at the beginning */
|
|
|
|
int tail_trim; /* Number of samples to remove from the end */
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
/* Added for Vorbis */
|
|
|
|
unsigned long samples; /* number of samples in track */
|
|
|
|
|
2003-03-10 14:55:31 +00:00
|
|
|
/* MP3 stream specific info */
|
2003-02-07 09:41:57 +00:00
|
|
|
long bpf; /* bytes per frame */
|
|
|
|
long tpf; /* time per frame */
|
2005-07-05 19:55:40 +00:00
|
|
|
long frame_count; /* number of frames in the file (if VBR) */
|
2003-02-07 09:41:57 +00:00
|
|
|
|
|
|
|
/* Xing VBR fields */
|
|
|
|
bool vbr;
|
2003-03-10 14:55:31 +00:00
|
|
|
bool has_toc; /* True if there is a VBR header in the file */
|
2003-02-07 09:41:57 +00:00
|
|
|
unsigned char toc[100];/* table of contents */
|
|
|
|
|
|
|
|
/* these following two fields are used for local buffering */
|
|
|
|
char id3v2buf[300];
|
|
|
|
char id3v1buf[3][32];
|
|
|
|
|
|
|
|
/* resume related */
|
|
|
|
int offset; /* bytes played */
|
|
|
|
int index; /* playlist index */
|
2005-07-03 21:08:16 +00:00
|
|
|
|
|
|
|
/* FileEntry fields */
|
|
|
|
long fileentryoffset;
|
|
|
|
long filehash;
|
|
|
|
long songentryoffset;
|
|
|
|
long rundbentryoffset;
|
|
|
|
|
|
|
|
/* runtime database fields */
|
|
|
|
long rundbhash;
|
|
|
|
short rating;
|
|
|
|
short voladjust;
|
|
|
|
long playcount;
|
|
|
|
long lastplayed;
|
2005-07-24 15:32:28 +00:00
|
|
|
|
|
|
|
/* replaygain support */
|
|
|
|
|
|
|
|
#if CONFIG_HWCODEC == MASNONE
|
2005-07-27 11:54:33 +00:00
|
|
|
char* track_gain_string;
|
|
|
|
char* album_gain_string;
|
2005-07-24 15:32:28 +00:00
|
|
|
long track_gain; /* 7.24 signed fixed point. 0 for no gain. */
|
|
|
|
long album_gain;
|
|
|
|
long track_peak; /* 7.24 signed fixed point. 0 for no peak. */
|
|
|
|
long album_peak;
|
|
|
|
#endif
|
2003-02-07 09:41:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ID3_VER_1_0 = 1,
|
|
|
|
ID3_VER_1_1,
|
|
|
|
ID3_VER_2_2,
|
|
|
|
ID3_VER_2_3,
|
|
|
|
ID3_VER_2_4
|
|
|
|
};
|
|
|
|
|
2004-08-16 23:37:23 +00:00
|
|
|
bool mp3info(struct mp3entry *entry, const char *filename, bool v1first);
|
|
|
|
char* id3_get_genre(const struct mp3entry* id3);
|
2005-06-18 16:24:27 +00:00
|
|
|
char* id3_get_codec(const struct mp3entry* id3);
|
2003-02-07 09:41:57 +00:00
|
|
|
|
|
|
|
#endif
|