2004-03-21 22:32:23 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-03-21 22:32:23 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
#include "../decoder_api.h"
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_FAAD
|
|
|
|
|
|
|
|
#define AAC_MAX_CHANNELS 6
|
|
|
|
|
2004-05-31 04:56:14 +02:00
|
|
|
#include "../utils.h"
|
|
|
|
#include "../log.h"
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
#include <faad.h>
|
|
|
|
|
|
|
|
/* all code here is either based on or copied from FAAD2's frontend code */
|
|
|
|
typedef struct {
|
2008-08-26 08:27:13 +02:00
|
|
|
struct decoder *decoder;
|
2006-07-20 18:02:40 +02:00
|
|
|
InputStream *inStream;
|
2008-08-26 08:27:10 +02:00
|
|
|
size_t bytesIntoBuffer;
|
|
|
|
size_t bytesConsumed;
|
|
|
|
off_t fileOffset;
|
2004-03-21 22:32:23 +01:00
|
|
|
unsigned char *buffer;
|
|
|
|
int atEof;
|
|
|
|
} AacBuffer;
|
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
static void aac_buffer_shift(AacBuffer * b, size_t length)
|
|
|
|
{
|
|
|
|
assert(length >= b->bytesConsumed);
|
|
|
|
assert(length <= b->bytesConsumed + b->bytesIntoBuffer);
|
|
|
|
|
|
|
|
memmove(b->buffer, b->buffer + length,
|
|
|
|
b->bytesConsumed + b->bytesIntoBuffer - length);
|
|
|
|
|
|
|
|
length -= b->bytesConsumed;
|
|
|
|
b->bytesConsumed = 0;
|
|
|
|
b->bytesIntoBuffer -= length;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void fillAacBuffer(AacBuffer * b)
|
|
|
|
{
|
2008-08-26 08:27:10 +02:00
|
|
|
size_t bread;
|
|
|
|
|
2008-08-26 08:27:10 +02:00
|
|
|
if (b->bytesIntoBuffer >= FAAD_MIN_STREAMSIZE * AAC_MAX_CHANNELS)
|
|
|
|
/* buffer already full */
|
2008-08-26 08:27:10 +02:00
|
|
|
return;
|
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
aac_buffer_shift(b, b->bytesConsumed);
|
2008-08-26 08:27:10 +02:00
|
|
|
|
2008-08-26 08:27:10 +02:00
|
|
|
if (!b->atEof) {
|
2008-08-26 08:27:10 +02:00
|
|
|
size_t rest = FAAD_MIN_STREAMSIZE * AAC_MAX_CHANNELS -
|
|
|
|
b->bytesIntoBuffer;
|
|
|
|
|
2008-08-26 08:27:14 +02:00
|
|
|
bread = decoder_read(b->decoder, b->inStream,
|
|
|
|
(void *)(b->buffer + b->bytesIntoBuffer),
|
|
|
|
rest);
|
2008-08-26 08:27:10 +02:00
|
|
|
if (bread == 0 && inputStreamAtEOF(b->inStream))
|
2008-08-26 08:27:10 +02:00
|
|
|
b->atEof = 1;
|
|
|
|
b->bytesIntoBuffer += bread;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((b->bytesIntoBuffer > 3 && memcmp(b->buffer, "TAG", 3) == 0) ||
|
|
|
|
(b->bytesIntoBuffer > 11 &&
|
|
|
|
memcmp(b->buffer, "LYRICSBEGIN", 11) == 0) ||
|
|
|
|
(b->bytesIntoBuffer > 8 && memcmp(b->buffer, "APETAGEX", 8) == 0))
|
|
|
|
b->bytesIntoBuffer = 0;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:10 +02:00
|
|
|
static void advanceAacBuffer(AacBuffer * b, size_t bytes)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
b->fileOffset += bytes;
|
2004-03-21 22:32:23 +01:00
|
|
|
b->bytesConsumed = bytes;
|
2006-07-20 18:02:40 +02:00
|
|
|
b->bytesIntoBuffer -= bytes;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int adtsSampleRates[] =
|
|
|
|
{ 96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
|
|
|
|
16000, 12000, 11025, 8000, 7350, 0, 0, 0
|
|
|
|
};
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
/**
|
|
|
|
* Check whether the buffer head is an AAC frame, and return the frame
|
|
|
|
* length. Returns 0 if it is not a frame.
|
|
|
|
*/
|
|
|
|
static size_t adts_check_frame(AacBuffer * b)
|
|
|
|
{
|
|
|
|
if (b->bytesIntoBuffer <= 7)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* check syncword */
|
|
|
|
if (!((b->buffer[0] == 0xFF) && ((b->buffer[1] & 0xF6) == 0xF0)))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return (((unsigned int)b->buffer[3] & 0x3) << 11) |
|
|
|
|
(((unsigned int)b->buffer[4]) << 3) |
|
|
|
|
(b->buffer[5] >> 5);
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
/**
|
|
|
|
* Find the next AAC frame in the buffer. Returns 0 if no frame is
|
|
|
|
* found or if not enough data is available.
|
|
|
|
*/
|
|
|
|
static size_t adts_find_frame(AacBuffer * b)
|
|
|
|
{
|
|
|
|
const unsigned char *p;
|
|
|
|
size_t frame_length;
|
|
|
|
|
|
|
|
while ((p = memchr(b->buffer, 0xff, b->bytesIntoBuffer)) != NULL) {
|
|
|
|
/* discard data before 0xff */
|
|
|
|
if (p > b->buffer)
|
|
|
|
aac_buffer_shift(b, p - b->buffer);
|
|
|
|
|
|
|
|
if (b->bytesIntoBuffer <= 7)
|
|
|
|
/* not enough data yet */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* is it a frame? */
|
|
|
|
frame_length = adts_check_frame(b);
|
|
|
|
if (frame_length > 0)
|
|
|
|
/* yes, it is */
|
|
|
|
return frame_length;
|
|
|
|
|
|
|
|
/* it's just some random 0xff byte; discard and and
|
|
|
|
continue searching */
|
|
|
|
aac_buffer_shift(b, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* nothing at all; discard the whole buffer */
|
|
|
|
aac_buffer_shift(b, b->bytesIntoBuffer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:10 +02:00
|
|
|
static void adtsParse(AacBuffer * b, float *length)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-08-26 08:27:10 +02:00
|
|
|
unsigned int frames, frameLength;
|
2004-03-21 22:32:23 +01:00
|
|
|
int sampleRate = 0;
|
2008-08-26 08:27:10 +02:00
|
|
|
float framesPerSec;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
/* Read all frames to ensure correct time and bitrate */
|
2006-07-20 18:02:40 +02:00
|
|
|
for (frames = 0;; frames++) {
|
2004-03-21 22:32:23 +01:00
|
|
|
fillAacBuffer(b);
|
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
frameLength = adts_find_frame(b);
|
2008-08-26 08:27:11 +02:00
|
|
|
if (frameLength > 0) {
|
2006-07-20 18:02:40 +02:00
|
|
|
if (frames == 0) {
|
|
|
|
sampleRate = adtsSampleRates[(b->
|
|
|
|
buffer[2] & 0x3c)
|
|
|
|
>> 2];
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (frameLength > b->bytesIntoBuffer)
|
|
|
|
break;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
advanceAacBuffer(b, frameLength);
|
|
|
|
} else
|
|
|
|
break;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
framesPerSec = (float)sampleRate / 1024.0;
|
|
|
|
if (framesPerSec != 0)
|
|
|
|
*length = (float)frames / framesPerSec;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:13 +02:00
|
|
|
static void initAacBuffer(AacBuffer * b,
|
|
|
|
struct decoder *decoder, InputStream * inStream)
|
2004-03-22 05:20:19 +01:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
memset(b, 0, sizeof(AacBuffer));
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-08-26 08:27:13 +02:00
|
|
|
b->decoder = decoder;
|
2004-05-06 20:49:04 +02:00
|
|
|
b->inStream = inStream;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-08-26 08:25:57 +02:00
|
|
|
b->buffer = xmalloc(FAAD_MIN_STREAMSIZE * AAC_MAX_CHANNELS);
|
2006-07-20 18:02:40 +02:00
|
|
|
memset(b->buffer, 0, FAAD_MIN_STREAMSIZE * AAC_MAX_CHANNELS);
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void aac_parse_header(AacBuffer * b, float *length)
|
|
|
|
{
|
|
|
|
size_t fileread;
|
|
|
|
size_t tagsize;
|
|
|
|
|
|
|
|
if (length)
|
|
|
|
*length = -1;
|
|
|
|
|
|
|
|
fileread = b->inStream->size;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
fillAacBuffer(b);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
tagsize = 0;
|
2008-08-26 08:27:11 +02:00
|
|
|
if (b->bytesIntoBuffer >= 10 && !memcmp(b->buffer, "ID3", 3)) {
|
2004-03-21 22:32:23 +01:00
|
|
|
tagsize = (b->buffer[6] << 21) | (b->buffer[7] << 14) |
|
2006-07-20 18:02:40 +02:00
|
|
|
(b->buffer[8] << 7) | (b->buffer[9] << 0);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
tagsize += 10;
|
|
|
|
advanceAacBuffer(b, tagsize);
|
2004-03-21 22:32:23 +01:00
|
|
|
fillAacBuffer(b);
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (length == NULL)
|
|
|
|
return;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
if (b->bytesIntoBuffer >= 2 &&
|
|
|
|
(b->buffer[0] == 0xFF) && ((b->buffer[1] & 0xF6) == 0xF0)) {
|
2004-03-21 22:32:23 +01:00
|
|
|
adtsParse(b, length);
|
2004-05-06 20:49:04 +02:00
|
|
|
seekInputStream(b->inStream, tagsize, SEEK_SET);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
b->bytesIntoBuffer = 0;
|
2004-03-21 22:32:23 +01:00
|
|
|
b->bytesConsumed = 0;
|
|
|
|
b->fileOffset = tagsize;
|
2008-08-26 08:27:11 +02:00
|
|
|
|
|
|
|
fillAacBuffer(b);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (memcmp(b->buffer, "ADIF", 4) == 0) {
|
2004-03-21 22:32:23 +01:00
|
|
|
int bitRate;
|
|
|
|
int skipSize = (b->buffer[4] & 0x80) ? 9 : 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
bitRate =
|
|
|
|
((unsigned int)(b->
|
|
|
|
buffer[4 +
|
|
|
|
skipSize] & 0x0F) << 19) | ((unsigned
|
|
|
|
int)b->
|
|
|
|
buffer[5
|
|
|
|
+
|
|
|
|
skipSize]
|
|
|
|
<< 11) |
|
|
|
|
((unsigned int)b->
|
|
|
|
buffer[6 + skipSize] << 3) | ((unsigned int)b->buffer[7 +
|
|
|
|
skipSize]
|
|
|
|
& 0xE0);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-08-25 02:29:41 +02:00
|
|
|
if (fileread != 0 && bitRate != 0)
|
|
|
|
*length = fileread * 8.0 / bitRate;
|
|
|
|
else
|
|
|
|
*length = fileread;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static float getAacFloatTotalTime(char *file)
|
|
|
|
{
|
2004-03-21 22:32:23 +01:00
|
|
|
AacBuffer b;
|
|
|
|
float length;
|
2004-03-22 05:20:19 +01:00
|
|
|
faacDecHandle decoder;
|
|
|
|
faacDecConfigurationPtr config;
|
2008-04-12 06:15:24 +02:00
|
|
|
uint32_t sampleRate;
|
2004-03-22 05:20:19 +01:00
|
|
|
unsigned char channels;
|
2004-05-06 20:49:04 +02:00
|
|
|
InputStream inStream;
|
2006-08-20 05:11:12 +02:00
|
|
|
long bread;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (openInputStream(&inStream, file) < 0)
|
|
|
|
return -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2008-08-26 08:27:13 +02:00
|
|
|
initAacBuffer(&b, NULL, &inStream);
|
2008-08-26 08:27:11 +02:00
|
|
|
aac_parse_header(&b, &length);
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (length < 0) {
|
2004-03-22 05:20:19 +01:00
|
|
|
decoder = faacDecOpen();
|
|
|
|
|
|
|
|
config = faacDecGetCurrentConfiguration(decoder);
|
|
|
|
config->outputFormat = FAAD_FMT_16BIT;
|
2006-07-20 18:02:40 +02:00
|
|
|
faacDecSetConfiguration(decoder, config);
|
2004-03-22 05:20:19 +01:00
|
|
|
|
|
|
|
fillAacBuffer(&b);
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2006-07-20 18:02:40 +02:00
|
|
|
bread = faacDecInit(decoder, b.buffer, b.bytesIntoBuffer,
|
|
|
|
&sampleRate, &channels);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
2006-07-20 18:02:40 +02:00
|
|
|
bread = faacDecInit(decoder, b.buffer, &sampleRate, &channels);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2006-07-20 18:02:40 +02:00
|
|
|
if (bread >= 0 && sampleRate > 0 && channels > 0)
|
|
|
|
length = 0;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
|
|
|
faacDecClose(decoder);
|
|
|
|
}
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (b.buffer)
|
|
|
|
free(b.buffer);
|
2004-05-06 20:49:04 +02:00
|
|
|
closeInputStream(&inStream);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-03-22 05:20:19 +01:00
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int getAacTotalTime(char *file)
|
|
|
|
{
|
2008-04-12 06:16:32 +02:00
|
|
|
int file_time = -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
float length;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if ((length = getAacFloatTotalTime(file)) >= 0)
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time = length + 0.5;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2008-04-12 06:16:32 +02:00
|
|
|
return file_time;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:11 +02:00
|
|
|
static int aac_stream_decode(struct decoder * mpd_decoder,
|
|
|
|
InputStream *inStream)
|
|
|
|
{
|
|
|
|
float file_time;
|
|
|
|
float totalTime = 0;
|
|
|
|
faacDecHandle decoder;
|
|
|
|
faacDecFrameInfo frameInfo;
|
|
|
|
faacDecConfigurationPtr config;
|
|
|
|
long bread;
|
2008-09-07 19:19:55 +02:00
|
|
|
struct audio_format audio_format;
|
2008-08-26 08:27:11 +02:00
|
|
|
uint32_t sampleRate;
|
|
|
|
unsigned char channels;
|
|
|
|
unsigned int sampleCount;
|
|
|
|
char *sampleBuffer;
|
|
|
|
size_t sampleBufferLen;
|
2008-09-29 13:29:33 +02:00
|
|
|
uint16_t bitRate = 0;
|
2008-08-26 08:27:11 +02:00
|
|
|
AacBuffer b;
|
|
|
|
int initialized = 0;
|
|
|
|
|
2008-08-26 08:27:13 +02:00
|
|
|
initAacBuffer(&b, mpd_decoder, inStream);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
|
|
|
decoder = faacDecOpen();
|
|
|
|
|
|
|
|
config = faacDecGetCurrentConfiguration(decoder);
|
|
|
|
config->outputFormat = FAAD_FMT_16BIT;
|
|
|
|
#ifdef HAVE_FAACDECCONFIGURATION_DOWNMATRIX
|
|
|
|
config->downMatrix = 1;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FAACDECCONFIGURATION_DONTUPSAMPLEIMPLICITSBR
|
|
|
|
config->dontUpSampleImplicitSBR = 0;
|
|
|
|
#endif
|
|
|
|
faacDecSetConfiguration(decoder, config);
|
|
|
|
|
|
|
|
while (b.bytesIntoBuffer < FAAD_MIN_STREAMSIZE * AAC_MAX_CHANNELS &&
|
|
|
|
!b.atEof &&
|
|
|
|
decoder_get_command(mpd_decoder) == DECODE_COMMAND_NONE) {
|
|
|
|
fillAacBuffer(&b);
|
|
|
|
adts_find_frame(&b);
|
|
|
|
fillAacBuffer(&b);
|
|
|
|
my_usleep(10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
|
|
|
bread = faacDecInit(decoder, b.buffer, b.bytesIntoBuffer,
|
|
|
|
&sampleRate, &channels);
|
|
|
|
#else
|
|
|
|
bread = faacDecInit(decoder, b.buffer, &sampleRate, &channels);
|
|
|
|
#endif
|
|
|
|
if (bread < 0) {
|
|
|
|
ERROR("Error not a AAC stream.\n");
|
|
|
|
faacDecClose(decoder);
|
|
|
|
if (b.buffer)
|
|
|
|
free(b.buffer);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
audio_format.bits = 16;
|
|
|
|
|
|
|
|
file_time = 0.0;
|
|
|
|
|
|
|
|
advanceAacBuffer(&b, bread);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
fillAacBuffer(&b);
|
|
|
|
adts_find_frame(&b);
|
|
|
|
fillAacBuffer(&b);
|
|
|
|
|
|
|
|
if (b.bytesIntoBuffer == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
|
|
|
sampleBuffer = faacDecDecode(decoder, &frameInfo, b.buffer,
|
|
|
|
b.bytesIntoBuffer);
|
|
|
|
#else
|
|
|
|
sampleBuffer = faacDecDecode(decoder, &frameInfo, b.buffer);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (frameInfo.error > 0) {
|
|
|
|
ERROR("error decoding AAC stream\n");
|
|
|
|
ERROR("faad2 error: %s\n",
|
|
|
|
faacDecGetErrorMessage(frameInfo.error));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
|
|
|
sampleRate = frameInfo.samplerate;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!initialized) {
|
|
|
|
audio_format.channels = frameInfo.channels;
|
|
|
|
audio_format.sampleRate = sampleRate;
|
|
|
|
decoder_initialized(mpd_decoder, &audio_format, totalTime);
|
|
|
|
initialized = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
advanceAacBuffer(&b, frameInfo.bytesconsumed);
|
|
|
|
|
|
|
|
sampleCount = (unsigned long)(frameInfo.samples);
|
|
|
|
|
|
|
|
if (sampleCount > 0) {
|
|
|
|
bitRate = frameInfo.bytesconsumed * 8.0 *
|
|
|
|
frameInfo.channels * sampleRate /
|
|
|
|
frameInfo.samples / 1000 + 0.5;
|
|
|
|
file_time +=
|
|
|
|
(float)(frameInfo.samples) / frameInfo.channels /
|
|
|
|
sampleRate;
|
|
|
|
}
|
|
|
|
|
|
|
|
sampleBufferLen = sampleCount * 2;
|
|
|
|
|
|
|
|
decoder_data(mpd_decoder, NULL, 0, sampleBuffer,
|
|
|
|
sampleBufferLen, file_time,
|
|
|
|
bitRate, NULL);
|
|
|
|
if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) {
|
|
|
|
decoder_seek_error(mpd_decoder);
|
|
|
|
} else if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder_flush(mpd_decoder);
|
|
|
|
|
|
|
|
faacDecClose(decoder);
|
|
|
|
if (b.buffer)
|
|
|
|
free(b.buffer);
|
|
|
|
|
|
|
|
if (!initialized)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) {
|
|
|
|
decoder_seek_error(mpd_decoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
static int aac_decode(struct decoder * mpd_decoder, char *path)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-04-12 06:16:32 +02:00
|
|
|
float file_time;
|
2004-03-22 03:44:22 +01:00
|
|
|
float totalTime;
|
2004-03-21 22:32:23 +01:00
|
|
|
faacDecHandle decoder;
|
|
|
|
faacDecFrameInfo frameInfo;
|
|
|
|
faacDecConfigurationPtr config;
|
2006-08-20 05:11:12 +02:00
|
|
|
long bread;
|
2008-09-07 19:19:55 +02:00
|
|
|
struct audio_format audio_format;
|
2008-04-12 06:15:24 +02:00
|
|
|
uint32_t sampleRate;
|
2004-03-21 22:32:23 +01:00
|
|
|
unsigned char channels;
|
|
|
|
unsigned int sampleCount;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *sampleBuffer;
|
2004-03-21 22:32:23 +01:00
|
|
|
size_t sampleBufferLen;
|
2004-03-22 03:44:22 +01:00
|
|
|
/*float * seekTable;
|
2006-07-20 18:02:40 +02:00
|
|
|
long seekTableEnd = -1;
|
|
|
|
int seekPositionFound = 0; */
|
2008-09-29 13:29:33 +02:00
|
|
|
uint16_t bitRate = 0;
|
2004-03-22 03:44:22 +01:00
|
|
|
AacBuffer b;
|
2004-05-06 20:49:04 +02:00
|
|
|
InputStream inStream;
|
2008-08-26 08:27:07 +02:00
|
|
|
int initialized = 0;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if ((totalTime = getAacFloatTotalTime(path)) < 0)
|
|
|
|
return -1;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (openInputStream(&inStream, path) < 0)
|
|
|
|
return -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2008-08-26 08:27:13 +02:00
|
|
|
initAacBuffer(&b, mpd_decoder, &inStream);
|
2008-08-26 08:27:11 +02:00
|
|
|
aac_parse_header(&b, NULL);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
decoder = faacDecOpen();
|
|
|
|
|
|
|
|
config = faacDecGetCurrentConfiguration(decoder);
|
|
|
|
config->outputFormat = FAAD_FMT_16BIT;
|
|
|
|
#ifdef HAVE_FAACDECCONFIGURATION_DOWNMATRIX
|
|
|
|
config->downMatrix = 1;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FAACDECCONFIGURATION_DONTUPSAMPLEIMPLICITSBR
|
|
|
|
config->dontUpSampleImplicitSBR = 0;
|
|
|
|
#endif
|
2006-07-20 18:02:40 +02:00
|
|
|
faacDecSetConfiguration(decoder, config);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-03-22 03:44:22 +01:00
|
|
|
fillAacBuffer(&b);
|
2004-03-25 02:08:13 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2006-07-20 18:02:40 +02:00
|
|
|
bread = faacDecInit(decoder, b.buffer, b.bytesIntoBuffer,
|
|
|
|
&sampleRate, &channels);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
2006-07-20 18:02:40 +02:00
|
|
|
bread = faacDecInit(decoder, b.buffer, &sampleRate, &channels);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2006-07-20 18:02:40 +02:00
|
|
|
if (bread < 0) {
|
2004-03-22 03:44:22 +01:00
|
|
|
ERROR("Error not a AAC stream.\n");
|
2004-03-21 22:32:23 +01:00
|
|
|
faacDecClose(decoder);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (b.buffer)
|
|
|
|
free(b.buffer);
|
2004-03-21 22:32:23 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
audio_format.bits = 16;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time = 0.0;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
advanceAacBuffer(&b, bread);
|
2004-03-22 03:44:22 +01:00
|
|
|
|
2008-08-26 08:27:06 +02:00
|
|
|
while (1) {
|
2004-03-23 02:12:30 +01:00
|
|
|
fillAacBuffer(&b);
|
|
|
|
|
2008-08-26 08:27:06 +02:00
|
|
|
if (b.bytesIntoBuffer == 0)
|
2004-03-23 02:12:30 +01:00
|
|
|
break;
|
2008-08-26 08:27:06 +02:00
|
|
|
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2006-07-20 18:02:40 +02:00
|
|
|
sampleBuffer = faacDecDecode(decoder, &frameInfo, b.buffer,
|
|
|
|
b.bytesIntoBuffer);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
2006-07-20 18:02:40 +02:00
|
|
|
sampleBuffer = faacDecDecode(decoder, &frameInfo, b.buffer);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (frameInfo.error > 0) {
|
2004-05-31 13:42:46 +02:00
|
|
|
ERROR("error decoding AAC file: %s\n", path);
|
2004-03-22 05:24:16 +01:00
|
|
|
ERROR("faad2 error: %s\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
faacDecGetErrorMessage(frameInfo.error));
|
2004-03-21 22:32:23 +01:00
|
|
|
break;
|
|
|
|
}
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
|
|
|
sampleRate = frameInfo.samplerate;
|
|
|
|
#endif
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
if (!initialized) {
|
2008-08-26 08:27:05 +02:00
|
|
|
audio_format.channels = frameInfo.channels;
|
|
|
|
audio_format.sampleRate = sampleRate;
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_initialized(mpd_decoder, &audio_format,
|
|
|
|
totalTime);
|
2008-08-26 08:27:07 +02:00
|
|
|
initialized = 1;
|
2004-03-22 06:08:14 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
advanceAacBuffer(&b, frameInfo.bytesconsumed);
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2004-03-22 03:44:22 +01:00
|
|
|
sampleCount = (unsigned long)(frameInfo.samples);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sampleCount > 0) {
|
|
|
|
bitRate = frameInfo.bytesconsumed * 8.0 *
|
|
|
|
frameInfo.channels * sampleRate /
|
|
|
|
frameInfo.samples / 1000 + 0.5;
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time +=
|
2006-07-20 18:02:40 +02:00
|
|
|
(float)(frameInfo.samples) / frameInfo.channels /
|
|
|
|
sampleRate;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
sampleBufferLen = sampleCount * 2;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_data(mpd_decoder, NULL, 0, sampleBuffer,
|
|
|
|
sampleBufferLen, file_time,
|
|
|
|
bitRate, NULL);
|
2008-08-26 08:27:07 +02:00
|
|
|
if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) {
|
|
|
|
decoder_seek_error(mpd_decoder);
|
|
|
|
} else if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP)
|
2004-05-07 21:35:39 +02:00
|
|
|
break;
|
2005-04-03 15:52:00 +02:00
|
|
|
}
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_flush(mpd_decoder);
|
2004-05-07 21:35:39 +02:00
|
|
|
|
2004-03-22 06:08:14 +01:00
|
|
|
faacDecClose(decoder);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (b.buffer)
|
|
|
|
free(b.buffer);
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
if (!initialized)
|
2006-07-20 18:02:40 +02:00
|
|
|
return -1;
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) {
|
|
|
|
decoder_seek_error(mpd_decoder);
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-29 09:38:11 +02:00
|
|
|
static struct tag *aacTagDup(char *file)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-08-29 09:38:11 +02:00
|
|
|
struct tag *ret = NULL;
|
2008-04-12 06:16:32 +02:00
|
|
|
int file_time = getAacTotalTime(file);
|
2004-05-31 04:56:14 +02:00
|
|
|
|
2008-04-12 06:16:32 +02:00
|
|
|
if (file_time >= 0) {
|
2008-08-29 09:38:21 +02:00
|
|
|
if ((ret = tag_id3_load(file)) == NULL)
|
|
|
|
ret = tag_new();
|
2008-04-12 06:16:32 +02:00
|
|
|
ret->time = file_time;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
|
|
|
DEBUG("aacTagDup: Failed to get total song time from: %s\n",
|
|
|
|
file);
|
2005-09-08 23:08:02 +02:00
|
|
|
}
|
2004-05-31 04:56:14 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-04-12 06:15:30 +02:00
|
|
|
static const char *aac_suffixes[] = { "aac", NULL };
|
|
|
|
static const char *aac_mimeTypes[] = { "audio/aac", "audio/aacp", NULL };
|
2004-05-31 04:56:14 +02:00
|
|
|
|
2008-08-26 08:27:08 +02:00
|
|
|
struct decoder_plugin aacPlugin = {
|
2008-09-29 15:55:17 +02:00
|
|
|
.name = "aac",
|
|
|
|
.stream_decode = aac_stream_decode,
|
|
|
|
.file_decode = aac_decode,
|
|
|
|
.tag_dup = aacTagDup,
|
|
|
|
.stream_types = INPUT_PLUGIN_STREAM_FILE | INPUT_PLUGIN_STREAM_URL,
|
|
|
|
.suffixes = aac_suffixes,
|
|
|
|
.mime_types = aac_mimeTypes
|
2004-05-31 04:56:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2008-08-26 08:27:08 +02:00
|
|
|
struct decoder_plugin aacPlugin;
|
2004-05-31 04:56:14 +02:00
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* HAVE_FAAD */
|