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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/*----------------------------------------------------------------------------
libtunepimp -- The MusicBrainz tagging library.
Let a thousand taggers bloom!
Copyright (C) Robert Kaye 2003
This file is part of libtunepimp.
libtunepimp 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.
libtunepimp 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 libtunepimp; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id: mp3.cpp 1426 2005-10-07 01:34:14Z luks $
----------------------------------------------------------------------------*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <errno.h>
#ifdef WIN32
#include <winsock.h>
#else
#include <netinet/in.h>
#include <sys/param.h>
#endif
#include "plugin.h"
#include "mp3.h"
#include "mp3decode.h"
#include "metadata.h"
#include "id3_meta.h"
#include "id3_2_3_meta.h"
#include "mp3info.h"
/*-------------------------------------------------------------------------*/
#define PLUGIN_VERSION "1.0.0"
#define PLUGIN_NAME "MP3 decoder & ID3v1/v2 reader/writer"
extern "C"
{
/*-------------------------------------------------------------------------*/
#ifndef WIN32
#define initPlugin mp3InitPlugin
#endif
Plugin *initPlugin (void);
static void MP3Shutdown (void);
static const char *MP3GetVersion (void);
static const char *MP3GetName (void);
static int MP3GetNumFormats(void);
static int MP3GetFormat (int, char ext[TP_EXTENSION_LEN],
char desc[TP_PLUGIN_DESC_LEN], int *functions);
static const char *MP3GetError (void);
static int MP3WriteMetadata(const metadata_t *mdata, const char *fileName, int flags, const char *encoding);
static int MP3ReadMetadata (metadata_t *mdata, const char *fileName, int flags, const char *encoding);
static unsigned long MP3GetDuration (const char *file, int flags, const char *encoding);
static void *MP3DecodeStart (const char *file, int flags, const char *encoding);
static int MP3DecodeInfo (void *decode,
unsigned long *duration,
unsigned int *samplesPerSecond,
unsigned int *bitsPerSample,
unsigned int *channels);
static int MP3DecodeRead (void *decode, char *data, int maxBytes);
static void MP3DecodeEnd (void *decode);
/*-------------------------------------------------------------------------*/
static Plugin methods =
{
MP3Shutdown,
MP3GetVersion,
MP3GetName,
MP3GetNumFormats,
MP3GetFormat,
MP3GetError,
MP3ReadMetadata,
MP3WriteMetadata,
MP3GetDuration,
MP3DecodeStart,
MP3DecodeInfo,
MP3DecodeRead,
MP3DecodeEnd
};
static char *errorString = "";
/*-------------------------------------------------------------------------*/
Plugin *initPlugin(void)
{
return &methods;
}
static void MP3Shutdown(void)
{
if (strlen(errorString))
free(errorString);
}
static const char *MP3GetVersion(void)
{
return PLUGIN_VERSION;
}
static const char *MP3GetName(void)
{
return PLUGIN_NAME;
}
static int MP3GetNumFormats(void)
{
return 1;
}
static int MP3GetFormat(int i, char ext[TP_EXTENSION_LEN],
char desc[TP_PLUGIN_DESC_LEN], int *functions)
{
if (i > 0)
return 0;
strcpy(ext, ".mp3");
strcpy(desc, "MP3 Audio format");
*functions = TP_PLUGIN_FUNCTION_DECODE | TP_PLUGIN_FUNCTION_METADATA;
return 1;
}
static const char *MP3GetError(void)
{
return errorString;
}
static void setError(const string &err)
{
if (err.length())
{
if (errorString)
free(errorString);
errorString = strdup(err.c_str());
}
}
static MetadataPlugin *id3Factory(int flags, const string &encoding)
{
bool writeV1 = ((flags & TP_PLUGIN_FLAGS_WRITE_ID3V1) != 0);
bool use2_3 = ((flags & TP_PLUGIN_FLAGS_MP3_USE_ID3V23) != 0);
ID3_Encoding enc = idUTF8;
if ((flags & TP_PLUGIN_FLAGS_MP3_WRITE_LATIN1) != 0)
enc = idLatin1;
else
if ((flags & TP_PLUGIN_FLAGS_MP3_WRITE_UTF16) != 0)
enc = idUTF16;
return use2_3 ? (MetadataPlugin *)(new ID3_2_3(writeV1, enc, encoding)) : (MetadataPlugin *)(new ID3(writeV1, enc, encoding));
}
static int MP3ReadMetadata(metadata_t *mdata, const char *fileName, int flags, const char *encoding)
{
Metadata data;
MetadataPlugin *id3 = id3Factory(flags, encoding);
int ret = 0;
if (id3->read(fileName, data))
{
data.writeToC(mdata);
ret = 1;
}
else
{
string err;
id3->getError(err);
setError(err);
}
delete id3;
return ret;
}
static int MP3WriteMetadata(const metadata_t *mdata, const char *fileName, int flags, const char *encoding)
{
int ret;
Metadata data;
MetadataPlugin *id3 = id3Factory(flags, encoding);
data.readFromC(mdata);
ret = id3->write(fileName, data, (flags & TP_PLUGIN_FLAGS_GENERAL_CLEAR_TAGS) != 0);
if (!ret)
{
string err;
id3->getError(err);
setError(err);
}
delete id3;
return ret;
}
static unsigned long MP3GetDuration(const char *fileName, int flags, const char *encoding)
{
TPMP3Info mp3info;
int ret;
ret = mp3info.analyze(fileName, encoding);
if (ret)
return (unsigned long)mp3info.getDuration();
return 0;
}
static void *MP3DecodeStart(const char *fileName, int flags, const char *encoding)
{
return (void *)new MP3Decode(fileName, encoding);
}
static int MP3DecodeInfo(void *decode,
unsigned long *duration,
unsigned int *samplesPerSecond,
unsigned int *bitsPerSample,
unsigned int *channels)
{
return ((MP3Decode *)decode)->getInfo(*duration, *samplesPerSecond, *bitsPerSample, *channels);
}
static int MP3DecodeRead(void *decode, char *data, int maxBytes)
{
return ((MP3Decode *)decode)->read(data, maxBytes);
}
static void MP3DecodeEnd(void *decode)
{
delete (MP3Decode *)decode;
}
} // extern "C"
|