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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/*----------------------------------------------------------------------------
libtunepimp -- The MusicBrainz tagging library.
Let a thousand taggers bloom!
Copyright (C) Robert Kaye 2003
Portions Copyright (C) 2001, 2002 Bertrand Petit
Portions Copyright (C) 2002 Myers Carpenter
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: mp3decode.cpp 1457 2006-01-14 21:25:37Z robert $
----------------------------------------------------------------------------*/
/****************************************************************************
* madlld.c -- A simple program decoding an mpeg audio stream to 16-bit *
* PCM from stdin to stdout. This program is just a simple sample *
* demonstrating how the low-level libmad API can be used. *
*--------------------------------------------------------------------------*
* (c) 2001, 2002 Bertrand Petit *
* *
* Redistribution and use in source and binary forms, with or without *
* modification, are permitted provided that the following conditions *
* are met: *
* *
* 1. Redistributions of source code must retain the above copyright *
* notice, this list of conditions and the following disclaimer. *
* *
* 2. Redistributions in binary form must reproduce the above *
* copyright notice, this list of conditions and the following *
* disclaimer in the documentation and/or other materials provided *
* with the distribution. *
* *
* 3. Neither the name of the author nor the names of its contributors *
* may be used to endorse or promote products derived from this *
* software without specific prior written permission. *
* *
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' *
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR *
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, *
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF *
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, *
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT *
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *
* SUCH DAMAGE. *
* *
****************************************************************************/
#include <string.h>
#include <errno.h>
#ifdef WIN32
#include <winsock.h>
#endif
#include <musicbrainz/mb_c.h>
#include "mp3decode.h"
#include "mp3info.h"
#if (MAD_VERSION_MAJOR>=1) || ((MAD_VERSION_MAJOR==0) && (((MAD_VERSION_MINOR==14) && (MAD_VERSION_PATCH>=2)) || (MAD_VERSION_MINOR>14)))
#define MadErrorString(x) mad_stream_errorstr(x)
#else
static const char *
MadErrorString (const struct mad_stream *Stream)
{
switch (Stream->error)
{
/* Generic unrecoverable errors. */
case MAD_ERROR_BUFLEN:
return ("input buffer too small (or EOF)");
case MAD_ERROR_BUFPTR:
return ("invalid (null) buffer pointer");
case MAD_ERROR_NOMEM:
return ("not enough memory");
/* Frame header related unrecoverable errors. */
case MAD_ERROR_LOSTSYNC:
return ("lost synchronization");
case MAD_ERROR_BADLAYER:
return ("reserved header layer value");
case MAD_ERROR_BADBITRATE:
return ("forbidden bitrate value");
case MAD_ERROR_BADSAMPLERATE:
return ("reserved sample frequency value");
case MAD_ERROR_BADEMPHASIS:
return ("reserved emphasis value");
/* Recoverable errors */
case MAD_ERROR_BADCRC:
return ("CRC check failed");
case MAD_ERROR_BADBITALLOC:
return ("forbidden bit allocation value");
case MAD_ERROR_BADSCALEFACTOR:
return ("bad scalefactor index");
case MAD_ERROR_BADFRAMELEN:
return ("bad frame length");
case MAD_ERROR_BADBIGVALUES:
return ("bad big_values count");
case MAD_ERROR_BADBLOCKTYPE:
return ("reserved block_type");
case MAD_ERROR_BADSCFSI:
return ("bad scalefactor selection info");
case MAD_ERROR_BADDATAPTR:
return ("bad main_data_begin pointer");
case MAD_ERROR_BADPART3LEN:
return ("bad audio data length");
case MAD_ERROR_BADHUFFTABLE:
return ("bad Huffman table select");
case MAD_ERROR_BADHUFFDATA:
return ("Huffman data overrun");
case MAD_ERROR_BADSTEREO:
return ("incompatible block_type for JS");
/* Unknown error. This swich may be out of sync with libmad's
* defined error codes.
*/
default:
return ("Unknown error code");
}
}
#endif
static signed int scale(mad_fixed_t sample)
{
/* round */
sample += (1L << (MAD_F_FRACBITS - 16));
/* clip */
if (sample >= MAD_F_ONE)
sample = MAD_F_ONE - 1;
else if (sample < -MAD_F_ONE)
sample = -MAD_F_ONE;
/* quantize */
return sample >> (MAD_F_FRACBITS + 1 - 16);
}
unsigned int getID3v1TagOffset(TFILE* fpFile)
{
char tag[4];
unsigned int offset;
int ret;
tseek(fpFile, -128, SEEK_END);
offset = ttell(fpFile);
ret = tread(tag, sizeof(char), 4, fpFile);
tseek(fpFile, 0, SEEK_SET);
if (ret == 4 && !strncmp(tag, "TAG", 3))
return offset;
else
return 0;
}
MP3Decode::MP3Decode(const string &fileName, const string &encoding) : DecodePlugin()
{
TPMP3Info mp3info;
int bitrate, ret;
FrameCount = 0;
curOffset = 0;
file = NULL;
this->encoding = encoding;
ret = mp3info.analyze(fileName, encoding);
if (!ret)
return;
duration = mp3info.getDuration();
channels = mp3info.getStereo();
channels++;
bitsPerSample = 16;
samplesPerSecond = mp3info.getSamplerate();
file = topen(fileName.c_str(), "rb", encoding.c_str());
id3v1TagOffset = getID3v1TagOffset(file);
/* First the structures used by libmad must be initialized. */
mad_stream_init (&Stream);
mad_frame_init (&Frame);
mad_synth_init (&Synth);
mad_timer_reset (&Timer);
}
MP3Decode::~MP3Decode(void)
{
if (file)
{
tclose(file);
/* Mad is no longer used, the structures that were initialized must
* now be cleared.
*/
mad_synth_finish (&Synth);
mad_frame_finish (&Frame);
mad_stream_finish (&Stream);
}
}
int MP3Decode::getInfo(unsigned long &duration,
unsigned int &samplesPerSecond,
unsigned int &bitsPerSample,
unsigned int &channels)
{
if (!file)
return 0;
duration = this->duration;
samplesPerSecond = this->samplesPerSecond;
bitsPerSample = this->bitsPerSample;
channels = this->channels;
return 1;
}
int MP3Decode::read(char *data, int maxBytes)
{
char *OutputPtr;
if (!file)
return -1;
for(;;)
{
/* The input bucket must be filled if it becomes empty or if
* it's the first execution of the loop.
*/
if (Stream.buffer == NULL || Stream.error == MAD_ERROR_BUFLEN)
{
size_t ReadSize, Remaining;
unsigned char *ReadStart;
/* {1} libmad may not consume all bytes of the input
* buffer. If the last frame in the buffer is not wholly
* contained by it, then that frame's start is pointed by
* the next_frame member of the Stream structure. This
* common situation occurs when mad_frame_decode() fails,
* sets the stream error code to MAD_ERROR_BUFLEN, and
* sets the next_frame pointer to a non NULL value. (See
* also the comment marked {2} bellow.)
*
* When this occurs, the remaining unused bytes must be
* put back at the beginning of the buffer and taken in
* account before refilling the buffer. This means that
* the input buffer must be large enough to hold a whole
* frame at the highest observable bit-rate (currently 448
* kb/s). XXX=XXX Is 2016 bytes the size of the largest
* frame? (448000*(1152/32000))/8
*/
if (Stream.next_frame != NULL)
{
Remaining = Stream.bufend - Stream.next_frame;
memmove (InputBuffer, Stream.next_frame, Remaining);
ReadStart = InputBuffer + Remaining;
ReadSize = INPUT_BUFFER_SIZE - Remaining;
}
else
ReadSize = INPUT_BUFFER_SIZE,
ReadStart = InputBuffer, Remaining = 0;
/* Fill-in the buffer. If an error occurs print a message
* and leave the decoding loop. If the end of stream is
* reached we also leave the loop but the return status is
* left untouched.
*/
if (id3v1TagOffset > 0)
{
curOffset = ttell(file);
if (id3v1TagOffset - curOffset < ReadSize)
{
ReadSize = id3v1TagOffset - curOffset;
}
}
ReadSize = tread (ReadStart, 1, ReadSize, file);
if (ReadSize <= 0)
return ReadSize;
/* Pipe the new buffer content to libmad's stream decoder
* facility.
*/
mad_stream_buffer (&Stream, InputBuffer, ReadSize + Remaining);
Stream.error = MAD_ERROR_NONE;
}
/* Decode the next mpeg frame. The streams is read from the
* buffer, its constituents are break down and stored the the
* Frame structure, ready for examination/alteration or PCM
* synthesis. Decoding options are carried in the Frame
* structure from the Stream structure.
*
* Error handling: mad_frame_decode() returns a non zero value
* when an error occurs. The error condition can be checked in
* the error member of the Stream structure. A mad error is
* recoverable or fatal, the error status is checked with the
* MAD_RECOVERABLE macro.
*
* {2} When a fatal error is encountered all decoding
* activities shall be stopped, except when a MAD_ERROR_BUFLEN
* is signaled. This condition means that the
* mad_frame_decode() function needs more input to achieve
* it's work. One shall refill the buffer and repeat the
* mad_frame_decode() call. Some bytes may be left unused at
* the end of the buffer if those bytes forms an incomplete
* frame. Before refilling, the remainign bytes must be moved
* to the begining of the buffer and used for input for the
* next mad_frame_decode() invocation. (See the comments marked
* {1} earlier for more details.)
*
* Recoverable errors are caused by malformed bit-streams, in
* this case one can call again mad_frame_decode() in order to
* skip the faulty part and re-sync to the next frame.
*/
if (mad_frame_decode (&Frame, &Stream))
{
if (MAD_RECOVERABLE (Stream.error))
continue;
else if (Stream.error == MAD_ERROR_BUFLEN)
continue;
else
return -1;
}
/* Accounting. The computed frame duration is in the frame
* header structure. It is expressed as a fixed point number
* whole data type is mad_timer_t. It is different from the
* samples fixed point format and unlike it, it can't directly
* be added or substracted. The timer module provides several
* functions to operate on such numbers. Be careful there, as
* some functions of mad's timer module receive some of their
* mad_timer_t arguments by value!
*/
FrameCount++;
mad_timer_add (&Timer, Frame.header.duration);
/* Once decoded the frame is synthesized to PCM samples. No errors
* are reported by mad_synth_frame();
*/
mad_synth_frame (&Synth, &Frame);
/* Synthesized samples must be converted from mad's fixed
* point number to the consumer format. Here we use unsigned
* 16 bit big endian integers on two channels. Integer samples
* are temporarily stored in a buffer that is flushed when
* full.
*/
OutputPtr = data;
for (int i = 0; i < Synth.pcm.length; i++)
{
signed int Sample;
/* Left channel */
Sample = scale(Synth.pcm.samples[0][i]);
*(OutputPtr++) = (Sample >> 0) & 0xff;
*(OutputPtr++) = (Sample >> 8) & 0xff;
/* Right channel. If the decoded stream is monophonic then
* the right output channel is the same as the left one.
*/
if (MAD_NCHANNELS (&Frame.header) == 2)
Sample = scale(Synth.pcm.samples[1][i]);
*(OutputPtr++) = (Sample >> 0) & 0xff;
*(OutputPtr++) = (Sample >> 8) & 0xff;
}
return OutputPtr - data;
}
}
|