2004-03-21 22:32:23 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2004-05-31 04:56:14 +02:00
|
|
|
#include "../inputPlugin.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 "../audio.h"
|
|
|
|
#include "../log.h"
|
|
|
|
#include "../inputStream.h"
|
|
|
|
#include "../outputBuffer.h"
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <faad.h>
|
|
|
|
|
|
|
|
/* all code here is either based on or copied from FAAD2's frontend code */
|
|
|
|
typedef struct {
|
2004-05-06 20:49:04 +02:00
|
|
|
InputStream * inStream;
|
2004-03-21 22:32:23 +01:00
|
|
|
long bytesIntoBuffer;
|
|
|
|
long bytesConsumed;
|
|
|
|
long fileOffset;
|
|
|
|
unsigned char *buffer;
|
|
|
|
int atEof;
|
|
|
|
} AacBuffer;
|
|
|
|
|
|
|
|
void fillAacBuffer(AacBuffer *b) {
|
|
|
|
if(b->bytesConsumed > 0) {
|
|
|
|
int bread;
|
|
|
|
|
|
|
|
if(b->bytesIntoBuffer) {
|
|
|
|
memmove((void *)b->buffer,(void*)(b->buffer+
|
|
|
|
b->bytesConsumed),b->bytesIntoBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!b->atEof) {
|
2004-05-06 20:49:04 +02:00
|
|
|
bread = readFromInputStream(b->inStream,
|
|
|
|
(void *)(b->buffer+b->bytesIntoBuffer),
|
|
|
|
1,b->bytesConsumed);
|
2004-03-21 22:32:23 +01:00
|
|
|
if(bread!=b->bytesConsumed) b->atEof = 1;
|
|
|
|
b->bytesIntoBuffer+=bread;
|
|
|
|
}
|
|
|
|
|
|
|
|
b->bytesConsumed = 0;
|
|
|
|
|
|
|
|
if(b->bytesIntoBuffer > 3) {
|
|
|
|
if(memcmp(b->buffer,"TAG",3)==0) b->bytesIntoBuffer = 0;
|
|
|
|
}
|
|
|
|
if(b->bytesIntoBuffer > 11) {
|
|
|
|
if(memcmp(b->buffer,"LYRICSBEGIN",11)==0) {
|
|
|
|
b->bytesIntoBuffer = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(b->bytesIntoBuffer > 8) {
|
|
|
|
if(memcmp(b->buffer,"APETAGEX",8)==0) {
|
|
|
|
b->bytesIntoBuffer = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void advanceAacBuffer(AacBuffer * b, int bytes) {
|
|
|
|
b->fileOffset+=bytes;
|
|
|
|
b->bytesConsumed = bytes;
|
|
|
|
b->bytesIntoBuffer-=bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int adtsSampleRates[] = {96000,88200,64000,48000,44100,32000,24000,22050,
|
|
|
|
16000,12000,11025,8000,7350,0,0,0};
|
|
|
|
|
|
|
|
int adtsParse(AacBuffer * b, float * length) {
|
|
|
|
int frames, frameLength;
|
|
|
|
int tFrameLength = 0;
|
|
|
|
int sampleRate = 0;
|
|
|
|
float framesPerSec, bytesPerFrame;
|
|
|
|
|
|
|
|
/* Read all frames to ensure correct time and bitrate */
|
|
|
|
for(frames = 0; ;frames++) {
|
|
|
|
fillAacBuffer(b);
|
|
|
|
|
|
|
|
if(b->bytesIntoBuffer > 7) {
|
|
|
|
/* check syncword */
|
|
|
|
if (!((b->buffer[0] == 0xFF) &&
|
|
|
|
((b->buffer[1] & 0xF6) == 0xF0)))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(frames==0) {
|
|
|
|
sampleRate = adtsSampleRates[
|
|
|
|
(b->buffer[2]&0x3c)>>2];
|
|
|
|
}
|
|
|
|
|
|
|
|
frameLength = ((((unsigned int)b->buffer[3] & 0x3))
|
|
|
|
<< 11) | (((unsigned int)b->buffer[4])
|
|
|
|
<< 3) | (b->buffer[5] >> 5);
|
|
|
|
|
|
|
|
tFrameLength+=frameLength;
|
|
|
|
|
|
|
|
if(frameLength > b->bytesIntoBuffer) break;
|
|
|
|
|
|
|
|
advanceAacBuffer(b,frameLength);
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
}
|
|
|
|
|
|
|
|
framesPerSec = (float)sampleRate/1024.0;
|
|
|
|
if(frames!=0) {
|
|
|
|
bytesPerFrame = (float)tFrameLength/(float)(frames*1000);
|
|
|
|
}
|
|
|
|
else bytesPerFrame = 0;
|
|
|
|
if(framesPerSec!=0) *length = (float)frames/framesPerSec;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
void initAacBuffer(InputStream * inStream, AacBuffer * b, float * length,
|
2004-03-22 05:20:19 +01:00
|
|
|
size_t * retFileread, size_t * retTagsize)
|
|
|
|
{
|
2004-03-21 22:32:23 +01:00
|
|
|
size_t fileread;
|
|
|
|
size_t bread;
|
|
|
|
size_t tagsize;
|
|
|
|
|
2004-03-22 05:20:19 +01:00
|
|
|
if(length) *length = -1;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
memset(b,0,sizeof(AacBuffer));
|
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
b->inStream = inStream;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
fileread = inStream->size;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
b->buffer = malloc(FAAD_MIN_STREAMSIZE*AAC_MAX_CHANNELS);
|
|
|
|
memset(b->buffer,0,FAAD_MIN_STREAMSIZE*AAC_MAX_CHANNELS);
|
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
bread = readFromInputStream(inStream,b->buffer,1,
|
|
|
|
FAAD_MIN_STREAMSIZE*AAC_MAX_CHANNELS);
|
2004-03-21 22:32:23 +01:00
|
|
|
b->bytesIntoBuffer = bread;
|
|
|
|
b->bytesConsumed = 0;
|
|
|
|
b->fileOffset = 0;
|
|
|
|
|
|
|
|
if(bread!=FAAD_MIN_STREAMSIZE*AAC_MAX_CHANNELS) b->atEof = 1;
|
|
|
|
|
|
|
|
tagsize = 0;
|
|
|
|
if(!memcmp(b->buffer,"ID3",3)) {
|
|
|
|
tagsize = (b->buffer[6] << 21) | (b->buffer[7] << 14) |
|
|
|
|
(b->buffer[8] << 7) | (b->buffer[9] << 0);
|
|
|
|
|
|
|
|
tagsize+=10;
|
|
|
|
advanceAacBuffer(b,tagsize);
|
|
|
|
fillAacBuffer(b);
|
|
|
|
}
|
|
|
|
|
2004-03-22 05:20:19 +01:00
|
|
|
if(retFileread) *retFileread = fileread;
|
|
|
|
if(retTagsize) *retTagsize = tagsize;
|
|
|
|
|
2004-03-23 02:12:30 +01:00
|
|
|
if(length==NULL) return;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2004-03-21 22:32:23 +01:00
|
|
|
if((b->buffer[0] == 0xFF) && ((b->buffer[1] & 0xF6) == 0xF0)) {
|
|
|
|
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
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
bread = readFromInputStream(b->inStream, b->buffer, 1,
|
|
|
|
FAAD_MIN_STREAMSIZE*AAC_MAX_CHANNELS);
|
2004-03-21 22:32:23 +01:00
|
|
|
if(bread != FAAD_MIN_STREAMSIZE*AAC_MAX_CHANNELS) b->atEof = 1;
|
|
|
|
else b->atEof = 0;
|
|
|
|
b->bytesIntoBuffer = bread;
|
|
|
|
b->bytesConsumed = 0;
|
|
|
|
b->fileOffset = tagsize;
|
|
|
|
}
|
|
|
|
else if(memcmp(b->buffer,"ADIF",4) == 0) {
|
|
|
|
int bitRate;
|
|
|
|
int skipSize = (b->buffer[4] & 0x80) ? 9 : 0;
|
|
|
|
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);
|
|
|
|
|
|
|
|
*length = fileread;
|
|
|
|
if(*length!=0 && bitRate!=0) *length = *length*8.0/bitRate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-22 05:20:19 +01:00
|
|
|
float getAacFloatTotalTime(char * file) {
|
2004-03-21 22:32:23 +01:00
|
|
|
AacBuffer b;
|
|
|
|
float length;
|
2004-03-22 05:20:19 +01:00
|
|
|
size_t fileread, tagsize;
|
|
|
|
faacDecHandle decoder;
|
|
|
|
faacDecConfigurationPtr config;
|
2005-03-29 02:41:59 +02:00
|
|
|
unsigned int sampleRate;
|
2004-03-22 05:20:19 +01:00
|
|
|
unsigned char channels;
|
2004-05-06 20:49:04 +02:00
|
|
|
InputStream inStream;
|
2004-03-25 02:08:13 +01:00
|
|
|
size_t bread;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-05-18 04:46:13 +02:00
|
|
|
if(openInputStream(&inStream,file) < 0) return -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
initAacBuffer(&inStream,&b,&length,&fileread,&tagsize);
|
2004-03-22 05:20:19 +01:00
|
|
|
|
|
|
|
if(length < 0) {
|
|
|
|
decoder = faacDecOpen();
|
|
|
|
|
|
|
|
config = faacDecGetCurrentConfiguration(decoder);
|
|
|
|
config->outputFormat = FAAD_FMT_16BIT;
|
|
|
|
faacDecSetConfiguration(decoder,config);
|
|
|
|
|
|
|
|
fillAacBuffer(&b);
|
2004-03-25 02:08:13 +01:00
|
|
|
#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 && sampleRate > 0 && channels > 0) length = 0;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
|
|
|
faacDecClose(decoder);
|
|
|
|
}
|
2004-03-21 22:32:23 +01: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getAacTotalTime(char * file) {
|
|
|
|
int time = -1;
|
|
|
|
float length;
|
|
|
|
|
|
|
|
if((length = getAacFloatTotalTime(file))>=0) time = length+0.5;
|
|
|
|
|
|
|
|
return time;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-31 13:42:46 +02:00
|
|
|
int aac_decode(OutputBuffer * cb, DecoderControl * dc, char * path) {
|
2004-03-21 22:32:23 +01:00
|
|
|
float 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;
|
2004-03-22 03:44:22 +01:00
|
|
|
size_t bread;
|
2005-03-29 02:41:59 +02:00
|
|
|
unsigned int sampleRate;
|
2004-03-21 22:32:23 +01:00
|
|
|
unsigned char channels;
|
|
|
|
int eof = 0;
|
|
|
|
unsigned int sampleCount;
|
|
|
|
char * sampleBuffer;
|
|
|
|
size_t sampleBufferLen;
|
2004-03-22 03:44:22 +01:00
|
|
|
/*float * seekTable;
|
2004-03-21 22:32:23 +01:00
|
|
|
long seekTableEnd = -1;
|
2004-03-22 03:44:22 +01:00
|
|
|
int seekPositionFound = 0;*/
|
2004-03-21 22:32:23 +01:00
|
|
|
mpd_uint16 bitRate = 0;
|
2004-03-22 03:44:22 +01:00
|
|
|
AacBuffer b;
|
2004-05-06 20:49:04 +02:00
|
|
|
InputStream inStream;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-05-31 13:42:46 +02:00
|
|
|
if((totalTime = getAacFloatTotalTime(path)) < 0) return -1;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-05-31 13:42:46 +02:00
|
|
|
if(openInputStream(&inStream, path) < 0) return -1;
|
2004-03-22 05:20:19 +01:00
|
|
|
|
2004-05-06 20:49:04 +02:00
|
|
|
initAacBuffer(&inStream,&b,NULL,NULL,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
|
|
|
|
faacDecSetConfiguration(decoder,config);
|
|
|
|
|
2004-03-22 03:44:22 +01:00
|
|
|
fillAacBuffer(&b);
|
2004-03-25 02:08:13 +01:00
|
|
|
|
|
|
|
#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) {
|
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);
|
2004-05-06 20:49:04 +02:00
|
|
|
closeInputStream(b.inStream);
|
2004-03-22 03:44:22 +01:00
|
|
|
if(b.buffer) free(b.buffer);
|
2004-03-21 22:32:23 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-05-10 14:35:18 +02:00
|
|
|
dc->audioFormat.bits = 16;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-05-10 14:35:18 +02:00
|
|
|
dc->totalTime = totalTime;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
time = 0.0;
|
|
|
|
|
2004-03-22 03:44:22 +01:00
|
|
|
advanceAacBuffer(&b,bread);
|
|
|
|
|
2004-03-23 02:12:30 +01:00
|
|
|
while(!eof) {
|
|
|
|
fillAacBuffer(&b);
|
|
|
|
|
|
|
|
if(b.bytesIntoBuffer==0) {
|
|
|
|
eof = 1;
|
|
|
|
break;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
2004-03-23 02:12:30 +01:00
|
|
|
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2004-03-22 03:44:22 +01:00
|
|
|
sampleBuffer = faacDecDecode(decoder,&frameInfo,b.buffer,
|
|
|
|
b.bytesIntoBuffer);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
|
|
|
sampleBuffer = faacDecDecode(decoder,&frameInfo,b.buffer);
|
|
|
|
#endif
|
2004-03-21 22:32:23 +01: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",
|
|
|
|
faacDecGetErrorMessage(frameInfo.error));
|
2004-03-21 22:32:23 +01:00
|
|
|
eof = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
|
|
|
sampleRate = frameInfo.samplerate;
|
|
|
|
#endif
|
|
|
|
|
2004-05-19 04:14:20 +02:00
|
|
|
if(dc->state != DECODE_STATE_DECODE) {
|
2004-05-10 14:35:18 +02:00
|
|
|
dc->audioFormat.channels = frameInfo.channels;
|
|
|
|
dc->audioFormat.sampleRate = sampleRate;
|
|
|
|
getOutputAudioFormat(&(dc->audioFormat),
|
|
|
|
&(cb->audioFormat));
|
2004-03-22 06:08:14 +01:00
|
|
|
dc->state = DECODE_STATE_DECODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
advanceAacBuffer(&b,frameInfo.bytesconsumed);
|
|
|
|
|
2004-03-22 03:44:22 +01:00
|
|
|
sampleCount = (unsigned long)(frameInfo.samples);
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
if(sampleCount>0) {
|
|
|
|
bitRate = frameInfo.bytesconsumed*8.0*
|
2004-03-25 02:08:13 +01:00
|
|
|
frameInfo.channels*sampleRate/
|
2004-04-03 06:01:31 +02:00
|
|
|
frameInfo.samples/1000+0.5;
|
2004-03-22 05:20:19 +01:00
|
|
|
time+= (float)(frameInfo.samples)/frameInfo.channels/
|
2004-03-25 02:08:13 +01:00
|
|
|
sampleRate;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sampleBufferLen = sampleCount*2;
|
|
|
|
|
2004-05-29 14:05:49 +02:00
|
|
|
sendDataToOutputBuffer(cb, NULL, dc, 0, sampleBuffer,
|
2004-11-02 20:56:59 +01:00
|
|
|
sampleBufferLen, time, bitRate, NULL);
|
2004-05-30 15:33:13 +02:00
|
|
|
if(dc->seek) {
|
|
|
|
dc->seekError = 1;
|
|
|
|
dc->seek = 0;
|
|
|
|
}
|
2004-05-07 21:35:39 +02:00
|
|
|
else if(dc->stop) {
|
|
|
|
eof = 1;
|
|
|
|
break;
|
2004-03-21 22:32:23 +01:00
|
|
|
}
|
2005-04-03 15:52:00 +02:00
|
|
|
}
|
2004-03-21 22:32:23 +01:00
|
|
|
|
2004-05-07 21:35:39 +02:00
|
|
|
flushOutputBuffer(cb);
|
|
|
|
|
2004-03-22 06:08:14 +01:00
|
|
|
faacDecClose(decoder);
|
2004-05-06 20:49:04 +02:00
|
|
|
closeInputStream(b.inStream);
|
2004-03-22 06:08:14 +01:00
|
|
|
if(b.buffer) free(b.buffer);
|
|
|
|
|
2004-05-19 04:14:20 +02:00
|
|
|
if(dc->state != DECODE_STATE_DECODE) return -1;
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2004-05-30 15:33:13 +02:00
|
|
|
if(dc->seek) {
|
|
|
|
dc->seekError = 1;
|
|
|
|
dc->seek = 0;
|
|
|
|
}
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
if(dc->stop) {
|
|
|
|
dc->state = DECODE_STATE_STOP;
|
|
|
|
dc->stop = 0;
|
|
|
|
}
|
2004-03-22 03:44:22 +01:00
|
|
|
else dc->state = DECODE_STATE_STOP;
|
2004-03-21 22:32:23 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-31 04:56:14 +02:00
|
|
|
MpdTag * aacTagDup(char * file) {
|
|
|
|
MpdTag * ret = NULL;
|
|
|
|
int time;
|
|
|
|
|
|
|
|
time = getAacTotalTime(file);
|
|
|
|
|
|
|
|
if(time>=0) {
|
|
|
|
if((ret = id3Dup(file))==NULL) ret = newMpdTag();
|
|
|
|
ret->time = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
char * aacSuffixes[] = {"aac", NULL};
|
|
|
|
|
|
|
|
InputPlugin aacPlugin =
|
|
|
|
{
|
|
|
|
"aac",
|
|
|
|
NULL,
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-05-31 04:56:14 +02:00
|
|
|
aac_decode,
|
|
|
|
aacTagDup,
|
|
|
|
INPUT_PLUGIN_STREAM_FILE,
|
|
|
|
aacSuffixes,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
InputPlugin aacPlugin =
|
|
|
|
{
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-05-31 04:56:14 +02:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2004-03-21 22:32:23 +01:00
|
|
|
#endif /* HAVE_FAAD */
|