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"
|
2009-01-08 21:37:02 +01:00
|
|
|
#include "config.h"
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
#define AAC_MAX_CHANNELS 6
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
2008-11-21 20:13:26 +01:00
|
|
|
#include <unistd.h>
|
2004-03-21 22:32:23 +01:00
|
|
|
#include <faad.h>
|
2008-11-21 20:13:26 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
2009-02-17 08:51:34 +01:00
|
|
|
#define G_LOG_DOMAIN "faad"
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
/* all code here is either based on or copied from FAAD2's frontend code */
|
2009-02-16 19:31:11 +01:00
|
|
|
struct faad_buffer {
|
2008-08-26 08:27:13 +02:00
|
|
|
struct decoder *decoder;
|
2009-02-16 19:31:11 +01:00
|
|
|
struct input_stream *is;
|
|
|
|
size_t length;
|
|
|
|
size_t consumed;
|
|
|
|
unsigned char data[FAAD_MIN_STREAMSIZE * AAC_MAX_CHANNELS];
|
|
|
|
};
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static void
|
2009-02-17 19:27:01 +01:00
|
|
|
faad_buffer_shift(struct faad_buffer *b, size_t length)
|
2008-08-26 08:27:11 +02:00
|
|
|
{
|
2009-02-16 19:31:11 +01:00
|
|
|
assert(length >= b->consumed);
|
|
|
|
assert(length <= b->consumed + b->length);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
memmove(b->data, b->data + length,
|
|
|
|
b->consumed + b->length - length);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
length -= b->consumed;
|
|
|
|
b->consumed = 0;
|
|
|
|
b->length -= length;
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static void
|
|
|
|
faad_buffer_fill(struct faad_buffer *b)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-11-12 07:41:54 +01:00
|
|
|
size_t rest, bread;
|
2008-08-26 08:27:10 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (b->consumed > 0)
|
2009-02-17 19:27:01 +01:00
|
|
|
faad_buffer_shift(b, b->consumed);
|
2008-11-12 08:32:21 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
rest = sizeof(b->data) - b->length;
|
2008-11-12 08:32:21 +01:00
|
|
|
if (rest == 0)
|
2008-08-26 08:27:10 +02:00
|
|
|
/* buffer already full */
|
2008-08-26 08:27:10 +02:00
|
|
|
return;
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
bread = decoder_read(b->decoder, b->is,
|
|
|
|
b->data + b->length, rest);
|
|
|
|
b->length += bread;
|
2008-08-26 08:27:10 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if ((b->length > 3 && memcmp(b->data, "TAG", 3) == 0) ||
|
|
|
|
(b->length > 11 &&
|
|
|
|
memcmp(b->data, "LYRICSBEGIN", 11) == 0) ||
|
|
|
|
(b->length > 8 && memcmp(b->data, "APETAGEX", 8) == 0))
|
|
|
|
b->length = 0;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static void
|
|
|
|
faad_buffer_consume(struct faad_buffer *b, size_t bytes)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-16 19:31:11 +01:00
|
|
|
b->consumed = bytes;
|
|
|
|
b->length -= bytes;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static const unsigned adts_sample_rates[] =
|
2006-07-20 18:02:40 +02:00
|
|
|
{ 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.
|
|
|
|
*/
|
2009-02-16 19:31:11 +01:00
|
|
|
static size_t
|
|
|
|
adts_check_frame(struct faad_buffer *b)
|
2008-08-26 08:27:11 +02:00
|
|
|
{
|
2009-02-17 19:28:11 +01:00
|
|
|
assert(b->length >= 8);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
|
|
|
/* check syncword */
|
2009-02-16 19:31:11 +01:00
|
|
|
if (!((b->data[0] == 0xFF) && ((b->data[1] & 0xF6) == 0xF0)))
|
2008-08-26 08:27:11 +02:00
|
|
|
return 0;
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
return (((unsigned int)b->data[3] & 0x3) << 11) |
|
|
|
|
(((unsigned int)b->data[4]) << 3) |
|
|
|
|
(b->data[5] >> 5);
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2009-02-16 19:31:11 +01:00
|
|
|
static size_t
|
|
|
|
adts_find_frame(struct faad_buffer *b)
|
2008-08-26 08:27:11 +02:00
|
|
|
{
|
|
|
|
const unsigned char *p;
|
|
|
|
size_t frame_length;
|
|
|
|
|
2009-02-17 22:53:25 +01:00
|
|
|
faad_buffer_fill(b);
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
while ((p = memchr(b->data, 0xff, b->length)) != NULL) {
|
2008-08-26 08:27:11 +02:00
|
|
|
/* discard data before 0xff */
|
2009-02-16 19:31:11 +01:00
|
|
|
if (p > b->data)
|
2009-02-17 19:27:01 +01:00
|
|
|
faad_buffer_shift(b, p - b->data);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-17 19:28:11 +01:00
|
|
|
if (b->length < 8)
|
2008-08-26 08:27:11 +02:00
|
|
|
/* 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 */
|
2009-02-17 19:27:01 +01:00
|
|
|
faad_buffer_shift(b, 1);
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* nothing at all; discard the whole buffer */
|
2009-02-17 19:27:01 +01:00
|
|
|
faad_buffer_shift(b, b->length);
|
2008-08-26 08:27:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-17 22:54:01 +01:00
|
|
|
static float
|
|
|
|
adts_song_duration(struct faad_buffer *b)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-16 19:31:11 +01:00
|
|
|
unsigned int frames, frame_length;
|
2008-11-12 08:16:38 +01:00
|
|
|
unsigned sample_rate = 0;
|
2009-02-16 19:31:11 +01:00
|
|
|
float frames_per_second;
|
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++) {
|
2009-02-16 19:31:11 +01:00
|
|
|
frame_length = adts_find_frame(b);
|
|
|
|
if (frame_length > 0) {
|
2006-07-20 18:02:40 +02:00
|
|
|
if (frames == 0) {
|
2009-02-16 19:31:11 +01:00
|
|
|
sample_rate = adts_sample_rates[(b->data[2] & 0x3c) >> 2];
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (frame_length > b->length)
|
2006-07-20 18:02:40 +02:00
|
|
|
break;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_consume(b, frame_length);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else
|
|
|
|
break;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
frames_per_second = (float)sample_rate / 1024.0;
|
2009-02-17 22:54:01 +01:00
|
|
|
if (frames_per_second <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return (float)frames / frames_per_second;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2008-10-26 19:54:57 +01:00
|
|
|
static void
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_init(struct faad_buffer *buffer, struct decoder *decoder,
|
|
|
|
struct input_stream *is)
|
2004-03-22 05:20:19 +01:00
|
|
|
{
|
2009-02-16 19:31:11 +01:00
|
|
|
memset(buffer, 0, sizeof(*buffer));
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
buffer->decoder = decoder;
|
|
|
|
buffer->is = is;
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
2009-02-17 22:54:01 +01:00
|
|
|
static float
|
|
|
|
faad_song_duration(struct faad_buffer *b)
|
2008-08-26 08:27:11 +02:00
|
|
|
{
|
|
|
|
size_t fileread;
|
|
|
|
size_t tagsize;
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
fileread = b->is->size >= 0 ? b->is->size : 0;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_fill(b);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
tagsize = 0;
|
2009-02-16 19:31:11 +01:00
|
|
|
if (b->length >= 10 && !memcmp(b->data, "ID3", 3)) {
|
|
|
|
tagsize = (b->data[6] << 21) | (b->data[7] << 14) |
|
|
|
|
(b->data[8] << 7) | (b->data[9] << 0);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
tagsize += 10;
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_consume(b, tagsize);
|
|
|
|
faad_buffer_fill(b);
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (b->is->seekable && b->length >= 2 &&
|
|
|
|
(b->data[0] == 0xFF) && ((b->data[1] & 0xF6) == 0xF0)) {
|
2009-02-17 22:54:01 +01:00
|
|
|
float length = adts_song_duration(b);
|
2009-02-16 19:31:11 +01:00
|
|
|
input_stream_seek(b->is, tagsize, SEEK_SET);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
b->length = 0;
|
|
|
|
b->consumed = 0;
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_fill(b);
|
2009-02-17 22:54:01 +01:00
|
|
|
|
|
|
|
return length;
|
2009-02-17 19:27:36 +01:00
|
|
|
} else if (b->length >= 5 && memcmp(b->data, "ADIF", 4) == 0) {
|
2009-02-16 19:31:11 +01:00
|
|
|
unsigned bit_rate;
|
|
|
|
size_t skip_size = (b->data[4] & 0x80) ? 9 : 0;
|
2008-11-12 08:16:38 +01:00
|
|
|
|
2008-11-12 08:16:54 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (8 + skip_size > b->length)
|
2008-11-12 08:16:54 +01:00
|
|
|
/* not enough data yet; skip parsing this
|
|
|
|
header */
|
2009-02-17 22:54:01 +01:00
|
|
|
return -1;
|
2008-11-12 08:16:54 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
bit_rate = ((unsigned)(b->data[4 + skip_size] & 0x0F) << 19) |
|
|
|
|
((unsigned)b->data[5 + skip_size] << 11) |
|
|
|
|
((unsigned)b->data[6 + skip_size] << 3) |
|
|
|
|
((unsigned)b->data[7 + skip_size] & 0xE0);
|
|
|
|
|
|
|
|
if (fileread != 0 && bit_rate != 0)
|
2009-02-17 22:54:01 +01:00
|
|
|
return fileread * 8.0 / bit_rate;
|
2006-08-25 02:29:41 +02:00
|
|
|
else
|
2009-02-17 22:54:01 +01:00
|
|
|
return fileread;
|
|
|
|
} else
|
|
|
|
return -1;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static float
|
|
|
|
faad_get_file_time_float(const char *file)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-16 19:31:11 +01:00
|
|
|
struct faad_buffer buffer;
|
2004-03-21 22:32:23 +01:00
|
|
|
float length;
|
2004-03-22 05:20:19 +01:00
|
|
|
faacDecHandle decoder;
|
|
|
|
faacDecConfigurationPtr config;
|
2008-11-16 20:04:49 +01:00
|
|
|
uint32_t sample_rate;
|
|
|
|
#ifdef HAVE_FAAD_LONG
|
|
|
|
/* neaacdec.h declares all arguments as "unsigned long", but
|
|
|
|
internally expects uint32_t pointers. To avoid gcc
|
|
|
|
warnings, use this workaround. */
|
2008-11-20 19:19:30 +01:00
|
|
|
unsigned long *sample_rate_r = (unsigned long *)(void *)&sample_rate;
|
2008-11-16 20:04:49 +01:00
|
|
|
#else
|
|
|
|
uint32_t *sample_rate_r = &sample_rate;
|
|
|
|
#endif
|
2004-03-22 05:20:19 +01:00
|
|
|
unsigned char channels;
|
2009-02-16 19:31:11 +01:00
|
|
|
struct input_stream is;
|
2006-08-20 05:11:12 +02:00
|
|
|
long bread;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (!input_stream_open(&is, file))
|
2006-07-20 18:02:40 +02:00
|
|
|
return -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_init(&buffer, NULL, &is);
|
2009-02-17 22:54:01 +01:00
|
|
|
length = faad_song_duration(&buffer);
|
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
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_fill(&buffer);
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2009-02-16 19:31:11 +01:00
|
|
|
bread = faacDecInit(decoder, buffer.data, buffer.length,
|
2008-11-16 20:04:49 +01:00
|
|
|
sample_rate_r, &channels);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
2009-02-16 19:31:11 +01:00
|
|
|
bread = faacDecInit(decoder, buffer.data,
|
|
|
|
sample_rate_r, &channels);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2008-10-10 14:40:54 +02:00
|
|
|
if (bread >= 0 && sample_rate > 0 && channels > 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
length = 0;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
|
|
|
faacDecClose(decoder);
|
|
|
|
}
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
input_stream_close(&is);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-03-22 05:20:19 +01:00
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static int
|
|
|
|
faad_get_file_time(const char *file)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-04-12 06:16:32 +02:00
|
|
|
int file_time = -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
float length;
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if ((length = faad_get_file_time_float(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-11-11 17:13:44 +01:00
|
|
|
static void
|
2009-02-17 19:27:01 +01:00
|
|
|
faad_stream_decode(struct decoder *mpd_decoder, struct input_stream *is)
|
2008-08-26 08:27:11 +02:00
|
|
|
{
|
|
|
|
float file_time;
|
2009-02-16 19:31:11 +01:00
|
|
|
float total_time = 0;
|
2008-08-26 08:27:11 +02:00
|
|
|
faacDecHandle decoder;
|
2009-02-16 19:31:11 +01:00
|
|
|
faacDecFrameInfo frame_info;
|
2008-08-26 08:27:11 +02:00
|
|
|
faacDecConfigurationPtr config;
|
|
|
|
long bread;
|
2008-11-16 20:04:49 +01:00
|
|
|
uint32_t sample_rate;
|
|
|
|
#ifdef HAVE_FAAD_LONG
|
|
|
|
/* neaacdec.h declares all arguments as "unsigned long", but
|
|
|
|
internally expects uint32_t pointers. To avoid gcc
|
|
|
|
warnings, use this workaround. */
|
2008-11-20 19:19:30 +01:00
|
|
|
unsigned long *sample_rate_r = (unsigned long *)(void *)&sample_rate;
|
2008-11-16 20:04:49 +01:00
|
|
|
#else
|
|
|
|
uint32_t *sample_rate_r = &sample_rate;
|
|
|
|
#endif
|
2008-08-26 08:27:11 +02:00
|
|
|
unsigned char channels;
|
2009-02-16 19:31:11 +01:00
|
|
|
unsigned long sample_count;
|
|
|
|
const void *decoded;
|
|
|
|
size_t decoded_length;
|
|
|
|
uint16_t bit_rate = 0;
|
|
|
|
struct faad_buffer buffer;
|
2008-10-30 08:38:54 +01:00
|
|
|
bool initialized = false;
|
2008-11-12 08:25:06 +01:00
|
|
|
enum decoder_command cmd;
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_init(&buffer, mpd_decoder, is);
|
2009-02-17 22:54:01 +01:00
|
|
|
total_time = faad_song_duration(&buffer);
|
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);
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
while (buffer.length < sizeof(buffer.data) &&
|
|
|
|
!input_stream_eof(buffer.is) &&
|
2008-08-26 08:27:11 +02:00
|
|
|
decoder_get_command(mpd_decoder) == DECODE_COMMAND_NONE) {
|
2009-02-16 19:31:11 +01:00
|
|
|
adts_find_frame(&buffer);
|
|
|
|
faad_buffer_fill(&buffer);
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2009-02-16 19:31:11 +01:00
|
|
|
bread = faacDecInit(decoder, buffer.data, buffer.length,
|
2008-11-16 20:04:49 +01:00
|
|
|
sample_rate_r, &channels);
|
2008-08-26 08:27:11 +02:00
|
|
|
#else
|
2009-02-16 19:31:11 +01:00
|
|
|
bread = faacDecInit(decoder, buffer.data, sample_rate_r, &channels);
|
2008-08-26 08:27:11 +02:00
|
|
|
#endif
|
|
|
|
if (bread < 0) {
|
2008-11-21 20:13:26 +01:00
|
|
|
g_warning("Error not a AAC stream.\n");
|
2008-08-26 08:27:11 +02:00
|
|
|
faacDecClose(decoder);
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
file_time = 0.0;
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_consume(&buffer, bread);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2008-11-02 17:02:23 +01:00
|
|
|
do {
|
2009-02-16 19:31:11 +01:00
|
|
|
adts_find_frame(&buffer);
|
|
|
|
faad_buffer_fill(&buffer);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (buffer.length == 0)
|
2008-08-26 08:27:11 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2009-02-16 19:31:11 +01:00
|
|
|
decoded = faacDecDecode(decoder, &frame_info,
|
|
|
|
buffer.data, buffer.length);
|
2008-08-26 08:27:11 +02:00
|
|
|
#else
|
2009-02-16 19:31:11 +01:00
|
|
|
decoded = faacDecDecode(decoder, &frame_info,
|
|
|
|
buffer.data);
|
2008-08-26 08:27:11 +02:00
|
|
|
#endif
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
if (frame_info.error > 0) {
|
2008-11-21 20:13:26 +01:00
|
|
|
g_warning("error decoding AAC stream: %s\n",
|
2009-02-16 19:31:11 +01:00
|
|
|
faacDecGetErrorMessage(frame_info.error));
|
2008-08-26 08:27:11 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
2009-02-16 19:31:11 +01:00
|
|
|
sample_rate = frame_info.samplerate;
|
2008-08-26 08:27:11 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!initialized) {
|
2008-11-12 08:21:00 +01:00
|
|
|
const struct audio_format audio_format = {
|
|
|
|
.bits = 16,
|
2009-02-16 19:31:11 +01:00
|
|
|
.channels = frame_info.channels,
|
2008-11-12 08:21:00 +01:00
|
|
|
.sample_rate = sample_rate,
|
|
|
|
};
|
|
|
|
|
2008-11-21 20:27:30 +01:00
|
|
|
if (!audio_format_valid(&audio_format)) {
|
2009-02-17 08:51:34 +01:00
|
|
|
g_warning("invalid audio format\n");
|
2008-11-21 20:27:30 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-11-02 17:01:51 +01:00
|
|
|
decoder_initialized(mpd_decoder, &audio_format,
|
2009-02-16 19:31:11 +01:00
|
|
|
false, total_time);
|
2008-10-30 08:38:54 +01:00
|
|
|
initialized = true;
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
faad_buffer_consume(&buffer, frame_info.bytesconsumed);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
sample_count = (unsigned long)frame_info.samples;
|
|
|
|
if (sample_count > 0) {
|
|
|
|
bit_rate = frame_info.bytesconsumed * 8.0 *
|
|
|
|
frame_info.channels * sample_rate /
|
|
|
|
frame_info.samples / 1000 + 0.5;
|
2008-08-26 08:27:11 +02:00
|
|
|
file_time +=
|
2009-02-16 19:31:11 +01:00
|
|
|
(float)(frame_info.samples) / frame_info.channels /
|
2008-10-10 14:40:54 +02:00
|
|
|
sample_rate;
|
2008-08-26 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
decoded_length = sample_count * 2;
|
2008-08-26 08:27:11 +02:00
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
cmd = decoder_data(mpd_decoder, is, decoded,
|
|
|
|
decoded_length, file_time,
|
|
|
|
bit_rate, NULL);
|
2008-11-12 08:25:09 +01:00
|
|
|
if (cmd == DECODE_COMMAND_SEEK)
|
|
|
|
decoder_seek_error(mpd_decoder);
|
|
|
|
} while (cmd != DECODE_COMMAND_STOP);
|
2008-08-26 08:27:11 +02:00
|
|
|
|
|
|
|
faacDecClose(decoder);
|
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static struct tag *
|
|
|
|
faad_tag_dup(const char *file)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-16 19:31:11 +01:00
|
|
|
int file_time = faad_get_file_time(file);
|
2009-01-17 13:23:42 +01:00
|
|
|
struct tag *tag;
|
2004-05-31 04:56:14 +02:00
|
|
|
|
2009-01-17 13:23:42 +01:00
|
|
|
if (file_time < 0) {
|
2009-02-16 19:31:11 +01:00
|
|
|
g_debug("Failed to get total song time from: %s", file);
|
2009-01-17 13:23:42 +01:00
|
|
|
return NULL;
|
2005-09-08 23:08:02 +02:00
|
|
|
}
|
2004-05-31 04:56:14 +02:00
|
|
|
|
2009-01-17 13:23:42 +01:00
|
|
|
tag = tag_new();
|
|
|
|
tag->time = file_time;
|
|
|
|
return tag;
|
2004-05-31 04:56:14 +02:00
|
|
|
}
|
|
|
|
|
2009-02-16 19:31:11 +01:00
|
|
|
static const char *const faad_suffixes[] = { "aac", NULL };
|
|
|
|
static const char *const faad_mime_types[] = {
|
|
|
|
"audio/aac", "audio/aacp", NULL
|
|
|
|
};
|
2004-05-31 04:56:14 +02:00
|
|
|
|
2009-02-16 19:30:54 +01:00
|
|
|
const struct decoder_plugin faad_decoder_plugin = {
|
|
|
|
.name = "faad",
|
2009-02-17 19:27:01 +01:00
|
|
|
.stream_decode = faad_stream_decode,
|
2009-02-16 19:31:11 +01:00
|
|
|
.tag_dup = faad_tag_dup,
|
|
|
|
.suffixes = faad_suffixes,
|
|
|
|
.mime_types = faad_mime_types,
|
2004-05-31 04:56:14 +02:00
|
|
|
};
|