-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmp3info.h
116 lines (96 loc) · 4.15 KB
/
mp3info.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
mp3info.h - Header files for MP3Info
Copyright (C) 2000-2006 Cedric Tefft <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************
This program is based in part on MP3Info 0.5 by Ricardo Cerqueira <[email protected]>
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <ctype.h>
#include <string.h>
#ifdef __WIN32__
#include "win32/curses.h"
#define uint unsigned int
#include <getopt.h>
#ifdef __MINGW32__
int truncate(const char *name, off_t length);
#endif
#else
#include <curses.h>
#endif
#include <signal.h>
#include "mp3tech.h"
#include "textfunc.h"
#define VERSION "MP3Info 0.8.5a"
#define COPYRIGHT "Copyright (C) 2006 Cedric Tefft and Ricardo Cerqueira"
#define MAXGENRE 147
#define GENREROWS 50
#ifdef __MAIN
char *typegenre [MAXGENRE+2] = {
"Blues","Classic Rock","Country","Dance","Disco","Funk","Grunge",
"Hip-Hop","Jazz","Metal","New Age","Oldies","Other","Pop","R&B",
"Rap","Reggae","Rock","Techno","Industrial","Alternative","Ska",
"Death Metal","Pranks","Soundtrack","Euro-Techno","Ambient",
"Trip-Hop","Vocal","Jazz+Funk","Fusion","Trance","Classical",
"Instrumental","Acid","House","Game","Sound Clip","Gospel","Noise",
"Alt. Rock","Bass","Soul","Punk","Space","Meditative",
"Instrumental Pop","Instrumental Rock","Ethnic","Gothic",
"Darkwave","Techno-Industrial","Electronic","Pop-Folk","Eurodance",
"Dream","Southern Rock","Comedy","Cult","Gangsta Rap","Top 40",
"Christian Rap","Pop/Funk","Jungle","Native American","Cabaret",
"New Wave","Psychedelic","Rave","Showtunes","Trailer","Lo-Fi",
"Tribal","Acid Punk","Acid Jazz","Polka","Retro","Musical",
"Rock & Roll","Hard Rock","Folk","Folk/Rock","National Folk",
"Swing","Fast-Fusion","Bebob","Latin","Revival","Celtic",
"Bluegrass","Avantgarde","Gothic Rock","Progressive Rock",
"Psychedelic Rock","Symphonic Rock","Slow Rock","Big Band",
"Chorus","Easy Listening","Acoustic","Humour","Speech","Chanson",
"Opera","Chamber Music","Sonata","Symphony","Booty Bass","Primus",
"Porn Groove","Satire","Slow Jam","Club","Tango","Samba",
"Folklore","Ballad","Power Ballad","Rhythmic Soul","Freestyle",
"Duet","Punk Rock","Drum Solo","A Cappella","Euro-House",
"Dance Hall","Goa","Drum & Bass","Club-House","Hardcore","Terror",
"Indie","BritPop","Negerpunk","Polsk Punk","Beat",
"Christian Gangsta Rap","Heavy Metal","Black Metal","Crossover",
"Contemporary Christian","Christian Rock","Merengue","Salsa",
"Thrash Metal","Anime","JPop","Synthpop",""
};
int galphagenreindex[MAXGENRE+2] = {
148,123,74,73,34,99,40,20,26,145,90,
116,41,135,85,96,138,89,0,107,132,65,88,
104,102,97,136,61,141,1,32,128,112,57,140,
2,139,58,125,3,50,22,4,55,127,122,120,
98,52,48,124,25,54,84,81,115,80,119,5,
30,36,59,126,38,91,49,6,79,129,137,7,
35,100,131,19,46,47,33,146,29,8,63,86,
71,45,142,9,77,82,64,133,10,66,39,11,
103,12,75,134,53,62,13,109,117,23,108,92,
93,67,121,43,14,15,68,16,76,87,118,78,
17,143,114,110,69,21,111,95,105,42,37,24,
56,44,101,83,94,106,147,113,51,18,130,144,
60,70,31,72,27,28
};
int *alphagenreindex=&(galphagenreindex[1]);
#ifdef __WIN32__
extern int opterr,optind,optopt,optreset;
extern char *optarg;
#endif
#else
extern char *typegenre [MAXGENRE+2];
extern int alphagenreindex [MAXGENRE+1];
extern int galphagenreindex [MAXGENRE+2];
#endif
void tagedit_curs(char *filename, int filenum, int fileoutof, id3tag *tag);