2004-03-18 14:47:41 +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-18 14:47:41 +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
|
|
|
|
*/
|
|
|
|
|
2004-05-31 04:42:22 +02:00
|
|
|
#include "../inputPlugin.h"
|
2004-03-18 14:47:41 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_FAAD
|
|
|
|
|
2004-05-31 04:42:22 +02:00
|
|
|
#include "../utils.h"
|
|
|
|
#include "../audio.h"
|
|
|
|
#include "../log.h"
|
|
|
|
#include "../pcm_utils.h"
|
|
|
|
#include "../inputStream.h"
|
|
|
|
#include "../outputBuffer.h"
|
|
|
|
#include "../decode.h"
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "../os_compat.h"
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-07-26 05:05:50 +02:00
|
|
|
#include "../mp4ff/mp4ff.h"
|
|
|
|
|
2004-03-18 14:47:41 +01:00
|
|
|
#include <faad.h>
|
2004-03-18 17:31:29 +01:00
|
|
|
/* all code here is either based on or copied from FAAD2's frontend code */
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int mp4_getAACTrack(mp4ff_t * infile)
|
|
|
|
{
|
2004-03-18 14:47:41 +01:00
|
|
|
/* find AAC track */
|
|
|
|
int i, rc;
|
|
|
|
int numTracks = mp4ff_total_tracks(infile);
|
|
|
|
|
|
|
|
for (i = 0; i < numTracks; i++) {
|
|
|
|
unsigned char *buff = NULL;
|
2006-07-30 11:13:01 +02:00
|
|
|
unsigned int buff_size = 0;
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_MP4AUDIOSPECIFICCONFIG
|
2004-03-18 14:47:41 +01:00
|
|
|
mp4AudioSpecificConfig mp4ASC;
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
|
|
|
unsigned long dummy1_32;
|
2006-07-19 17:54:53 +02:00
|
|
|
unsigned char dummy2_8, dummy3_8, dummy4_8, dummy5_8, dummy6_8,
|
2006-07-20 18:02:40 +02:00
|
|
|
dummy7_8, dummy8_8;
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-07-26 05:05:50 +02:00
|
|
|
mp4ff_get_decoder_config(infile, i, &buff, &buff_size);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
|
|
|
if (buff) {
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_MP4AUDIOSPECIFICCONFIG
|
2006-07-26 05:05:50 +02:00
|
|
|
rc = AudioSpecificConfig(buff, buff_size, &mp4ASC);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
|
|
|
rc = AudioSpecificConfig(buff, &dummy1_32, &dummy2_8,
|
2006-07-20 18:02:40 +02:00
|
|
|
&dummy3_8, &dummy4_8,
|
|
|
|
&dummy5_8, &dummy6_8,
|
|
|
|
&dummy7_8, &dummy8_8);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2004-03-18 14:47:41 +01:00
|
|
|
free(buff);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (rc < 0)
|
|
|
|
continue;
|
2006-07-19 17:54:53 +02:00
|
|
|
return i;
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* can't decode this */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-07-17 03:47:32 +02:00
|
|
|
static uint32_t mp4_inputStreamReadCallback(void *inStream, void *buffer,
|
2006-07-20 18:02:40 +02:00
|
|
|
uint32_t length)
|
2004-05-06 20:49:04 +02:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
return readFromInputStream((InputStream *) inStream, buffer, 1, length);
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
2006-07-19 17:54:53 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static uint32_t mp4_inputStreamSeekCallback(void *inStream, uint64_t position)
|
|
|
|
{
|
2004-05-06 20:49:04 +02:00
|
|
|
return seekInputStream((InputStream *) inStream, position, SEEK_SET);
|
2006-07-19 17:54:53 +02:00
|
|
|
}
|
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
static int mp4_decode(OutputBuffer * cb, InputStream * inStream)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
mp4ff_t *mp4fh;
|
|
|
|
mp4ff_callback_t *mp4cb;
|
2004-03-18 14:47:41 +01:00
|
|
|
int32_t track;
|
2008-04-12 06:16:32 +02:00
|
|
|
float file_time;
|
2004-03-18 14:47:41 +01:00
|
|
|
int32_t scale;
|
2006-07-26 05:05:50 +02:00
|
|
|
faacDecHandle decoder;
|
2004-03-18 14:47:41 +01:00
|
|
|
faacDecFrameInfo frameInfo;
|
2006-07-26 05:05:50 +02:00
|
|
|
faacDecConfigurationPtr config;
|
2006-07-20 18:02:40 +02:00
|
|
|
unsigned char *mp4Buffer;
|
2006-07-30 11:13:01 +02:00
|
|
|
unsigned int mp4BufferSize;
|
2008-04-12 06:15:24 +02:00
|
|
|
uint32_t sampleRate;
|
2004-03-18 14:47:41 +01:00
|
|
|
unsigned char channels;
|
|
|
|
long sampleId;
|
|
|
|
long numSamples;
|
2004-03-18 17:31:29 +01:00
|
|
|
int eof = 0;
|
|
|
|
long dur;
|
|
|
|
unsigned int sampleCount;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *sampleBuffer;
|
2004-03-18 17:31:29 +01:00
|
|
|
size_t sampleBufferLen;
|
2004-03-18 20:43:07 +01:00
|
|
|
unsigned int initial = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
float *seekTable;
|
2004-03-18 23:20:26 +01:00
|
|
|
long seekTableEnd = -1;
|
|
|
|
int seekPositionFound = 0;
|
2004-03-20 01:54:20 +01:00
|
|
|
long offset;
|
2004-03-20 15:44:39 +01:00
|
|
|
mpd_uint16 bitRate = 0;
|
2004-07-03 16:49:10 +02:00
|
|
|
int seeking = 0;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-08-26 08:25:57 +02:00
|
|
|
mp4cb = xmalloc(sizeof(mp4ff_callback_t));
|
2004-05-06 20:49:04 +02:00
|
|
|
mp4cb->read = mp4_inputStreamReadCallback;
|
|
|
|
mp4cb->seek = mp4_inputStreamSeekCallback;
|
2007-06-04 21:24:19 +02:00
|
|
|
mp4cb->user_data = inStream;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
|
|
|
mp4fh = mp4ff_open_read(mp4cb);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!mp4fh) {
|
2004-03-18 14:47:41 +01:00
|
|
|
ERROR("Input does not appear to be a mp4 stream.\n");
|
|
|
|
free(mp4cb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
track = mp4_getAACTrack(mp4fh);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (track < 0) {
|
2004-03-18 14:47:41 +01:00
|
|
|
ERROR("No AAC track found in mp4 stream.\n");
|
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
free(mp4cb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-07-26 05:05:50 +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);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.audioFormat.bits = 16;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
|
|
|
mp4Buffer = NULL;
|
|
|
|
mp4BufferSize = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
mp4ff_get_decoder_config(mp4fh, track, &mp4Buffer, &mp4BufferSize);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (faacDecInit2
|
2006-07-26 05:05:50 +02:00
|
|
|
(decoder, mp4Buffer, mp4BufferSize, &sampleRate, &channels) < 0) {
|
2004-03-22 03:44:22 +01:00
|
|
|
ERROR("Error not a AAC stream.\n");
|
2004-03-18 14:47:41 +01:00
|
|
|
faacDecClose(decoder);
|
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
free(mp4cb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.audioFormat.sampleRate = sampleRate;
|
|
|
|
dc.audioFormat.channels = channels;
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time = mp4ff_get_track_duration_use_offsets(mp4fh, track);
|
2006-07-20 18:02:40 +02:00
|
|
|
scale = mp4ff_time_scale(mp4fh, track);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (mp4Buffer)
|
|
|
|
free(mp4Buffer);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (scale < 0) {
|
2004-03-18 14:47:41 +01:00
|
|
|
ERROR("Error getting audio format of mp4 AAC track.\n");
|
|
|
|
faacDecClose(decoder);
|
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
free(mp4cb);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.totalTime = ((float)file_time) / scale;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
numSamples = mp4ff_num_samples(mp4fh, track);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time = 0.0;
|
2004-03-18 17:31:29 +01:00
|
|
|
|
2006-08-26 08:25:57 +02:00
|
|
|
seekTable = xmalloc(sizeof(float) * numSamples);
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
for (sampleId = 0; sampleId < numSamples && !eof; sampleId++) {
|
2008-04-13 03:16:03 +02:00
|
|
|
if (dc.seek)
|
2006-07-20 18:02:40 +02:00
|
|
|
seeking = 1;
|
2004-07-03 16:49:10 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (seeking && seekTableEnd > 1 &&
|
2008-04-13 03:16:03 +02:00
|
|
|
seekTable[seekTableEnd] >= dc.seekWhere) {
|
2004-03-18 23:20:26 +01:00
|
|
|
int i = 2;
|
2008-04-13 03:16:03 +02:00
|
|
|
while (seekTable[i] < dc.seekWhere)
|
2006-07-20 18:02:40 +02:00
|
|
|
i++;
|
|
|
|
sampleId = i - 1;
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time = seekTable[sampleId];
|
2004-03-18 23:20:26 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
dur = mp4ff_get_sample_duration(mp4fh, track, sampleId);
|
|
|
|
offset = mp4ff_get_sample_offset(mp4fh, track, sampleId);
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sampleId > seekTableEnd) {
|
2008-04-12 06:16:32 +02:00
|
|
|
seekTable[sampleId] = file_time;
|
2004-03-18 23:20:26 +01:00
|
|
|
seekTableEnd = sampleId;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sampleId == 0)
|
|
|
|
dur = 0;
|
|
|
|
if (offset > dur)
|
|
|
|
dur = 0;
|
|
|
|
else
|
|
|
|
dur -= offset;
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time += ((float)dur) / scale;
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
if (seeking && file_time > dc.seekWhere)
|
2006-07-20 18:02:40 +02:00
|
|
|
seekPositionFound = 1;
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (seeking && seekPositionFound) {
|
2004-03-18 23:20:26 +01:00
|
|
|
seekPositionFound = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
clearOutputBuffer(cb);
|
2004-07-03 16:49:10 +02:00
|
|
|
seeking = 0;
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.seek = 0;
|
Initial cut of fork() => pthreads() for decoder and player
I initially started to do a heavy rewrite that changed the way processes
communicated, but that was too much to do at once. So this change only
focuses on replacing the player and decode processes with threads and
using condition variables instead of polling in loops; so the changeset
itself is quiet small.
* The shared output buffer variables will still need locking
to guard against race conditions. So in this effect, we're probably
just as buggy as before. The reduced context-switching overhead of
using threads instead of processes may even make bugs show up more or
less often...
* Basic functionality appears to be working for playing local (and NFS)
audio, including:
play, pause, stop, seek, previous, next, and main playlist editing
* I haven't tested HTTP streams yet, they should work.
* I've only tested ALSA and Icecast. ALSA works fine, Icecast
metadata seems to get screwy at times and breaks song
advancement in the playlist at times.
* state file loading works, too (after some last-minute hacks with
non-blocking wakeup functions)
* The non-blocking (*_nb) variants of the task management functions are
probably overused. They're more lenient and easier to use because
much of our code is still based on our previous polling-based system.
* It currently segfaults on exit. I haven't paid much attention
to the exit/signal-handling routines other than ensuring it
compiles. At least the state file seems to work. We don't
do any cleanups of the threads on exit, yet.
* Update is still done in a child process and not in a thread.
To do this in a thread, we'll need to ensure it does proper
locking and communication with the main thread; but should
require less memory in the end because we'll be updating
the database "in-place" rather than updating a copy and
then bulk-loading when done.
* We're more sensitive to bugs in 3rd party libraries now.
My plan is to eventually use a master process which forks()
and restarts the child when it dies:
locking and communication with the main thread; but should
require less memory in the end because we'll be updating
the database "in-place" rather than updating a copy and
then bulk-loading when done.
* We're more sensitive to bugs in 3rd party libraries now.
My plan is to eventually use a master process which forks()
and restarts the child when it dies:
master - just does waitpid() + fork() in a loop
\- main thread
\- decoder thread
\- player thread
At the beginning of every song, the main thread will set
a dirty flag and update the state file. This way, if we
encounter a song that triggers a segfault killing the
main thread, the master will start the replacement main
on the next song.
* The main thread still wakes up every second on select()
to check for signals; which affects power management.
[merged r7138 from branches/ew]
git-svn-id: https://svn.musicpd.org/mpd/trunk@7240 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2008-04-12 06:08:00 +02:00
|
|
|
decoder_wakeup_player();
|
2004-03-18 17:31:29 +01:00
|
|
|
}
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (seeking)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (mp4ff_read_sample(mp4fh, track, sampleId, &mp4Buffer,
|
|
|
|
&mp4BufferSize) == 0) {
|
2004-03-18 17:31:29 +01:00
|
|
|
eof = 1;
|
2004-03-19 02:24:20 +01:00
|
|
|
continue;
|
2004-03-18 17:31:29 +01: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, mp4Buffer,
|
|
|
|
mp4BufferSize);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
2006-07-20 18:02:40 +02:00
|
|
|
sampleBuffer = faacDecDecode(decoder, &frameInfo, mp4Buffer);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (mp4Buffer)
|
|
|
|
free(mp4Buffer);
|
|
|
|
if (frameInfo.error > 0) {
|
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-20 02:34:25 +01:00
|
|
|
eof = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
if (dc.state != DECODE_STATE_DECODE) {
|
2004-03-22 19:44:15 +01:00
|
|
|
channels = frameInfo.channels;
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
2004-03-22 19:44:15 +01:00
|
|
|
scale = frameInfo.samplerate;
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.audioFormat.sampleRate = scale;
|
|
|
|
dc.audioFormat.channels = frameInfo.channels;
|
|
|
|
getOutputAudioFormat(&(dc.audioFormat),
|
2006-07-20 18:02:40 +02:00
|
|
|
&(cb->audioFormat));
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.state = DECODE_STATE_DECODE;
|
2004-03-22 19:44:15 +01:00
|
|
|
}
|
|
|
|
|
2008-04-12 06:15:10 +02:00
|
|
|
if (channels * (unsigned long)(dur + offset) > frameInfo.samples) {
|
2006-07-20 18:02:40 +02:00
|
|
|
dur = frameInfo.samples / channels;
|
2004-03-20 02:34:25 +01:00
|
|
|
offset = 0;
|
|
|
|
}
|
2004-03-20 15:44:39 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
sampleCount = (unsigned long)(dur * channels);
|
2004-03-18 17:31:29 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sampleCount > 0) {
|
|
|
|
initial = 0;
|
|
|
|
bitRate = frameInfo.bytesconsumed * 8.0 *
|
|
|
|
frameInfo.channels * scale /
|
|
|
|
frameInfo.samples / 1000 + 0.5;
|
2004-03-20 15:44:39 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
sampleBufferLen = sampleCount * 2;
|
2004-03-20 01:54:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
sampleBuffer += offset * channels * 2;
|
2004-03-20 01:54:20 +01:00
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
sendDataToOutputBuffer(cb, inStream, 1, sampleBuffer,
|
2008-04-12 06:16:32 +02:00
|
|
|
sampleBufferLen, file_time,
|
|
|
|
bitRate, NULL);
|
2008-04-13 03:16:03 +02:00
|
|
|
if (dc.stop) {
|
2004-05-07 21:35:39 +02:00
|
|
|
eof = 1;
|
|
|
|
break;
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
2004-03-18 17:31:29 +01:00
|
|
|
}
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2004-03-22 06:08:14 +01:00
|
|
|
free(seekTable);
|
|
|
|
faacDecClose(decoder);
|
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
free(mp4cb);
|
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
if (dc.state != DECODE_STATE_DECODE)
|
2006-07-20 18:02:40 +02:00
|
|
|
return -1;
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2008-04-13 03:16:03 +02:00
|
|
|
if (dc.seek && seeking) {
|
2006-07-20 18:02:40 +02:00
|
|
|
clearOutputBuffer(cb);
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.seek = 0;
|
Initial cut of fork() => pthreads() for decoder and player
I initially started to do a heavy rewrite that changed the way processes
communicated, but that was too much to do at once. So this change only
focuses on replacing the player and decode processes with threads and
using condition variables instead of polling in loops; so the changeset
itself is quiet small.
* The shared output buffer variables will still need locking
to guard against race conditions. So in this effect, we're probably
just as buggy as before. The reduced context-switching overhead of
using threads instead of processes may even make bugs show up more or
less often...
* Basic functionality appears to be working for playing local (and NFS)
audio, including:
play, pause, stop, seek, previous, next, and main playlist editing
* I haven't tested HTTP streams yet, they should work.
* I've only tested ALSA and Icecast. ALSA works fine, Icecast
metadata seems to get screwy at times and breaks song
advancement in the playlist at times.
* state file loading works, too (after some last-minute hacks with
non-blocking wakeup functions)
* The non-blocking (*_nb) variants of the task management functions are
probably overused. They're more lenient and easier to use because
much of our code is still based on our previous polling-based system.
* It currently segfaults on exit. I haven't paid much attention
to the exit/signal-handling routines other than ensuring it
compiles. At least the state file seems to work. We don't
do any cleanups of the threads on exit, yet.
* Update is still done in a child process and not in a thread.
To do this in a thread, we'll need to ensure it does proper
locking and communication with the main thread; but should
require less memory in the end because we'll be updating
the database "in-place" rather than updating a copy and
then bulk-loading when done.
* We're more sensitive to bugs in 3rd party libraries now.
My plan is to eventually use a master process which forks()
and restarts the child when it dies:
locking and communication with the main thread; but should
require less memory in the end because we'll be updating
the database "in-place" rather than updating a copy and
then bulk-loading when done.
* We're more sensitive to bugs in 3rd party libraries now.
My plan is to eventually use a master process which forks()
and restarts the child when it dies:
master - just does waitpid() + fork() in a loop
\- main thread
\- decoder thread
\- player thread
At the beginning of every song, the main thread will set
a dirty flag and update the state file. This way, if we
encounter a song that triggers a segfault killing the
main thread, the master will start the replacement main
on the next song.
* The main thread still wakes up every second on select()
to check for signals; which affects power management.
[merged r7138 from branches/ew]
git-svn-id: https://svn.musicpd.org/mpd/trunk@7240 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2008-04-12 06:08:00 +02:00
|
|
|
decoder_wakeup_player();
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2004-07-03 16:49:10 +02:00
|
|
|
flushOutputBuffer(cb);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MpdTag *mp4DataDup(char *file, int *mp4MetadataFound)
|
|
|
|
{
|
|
|
|
MpdTag *ret = NULL;
|
2004-05-31 04:42:22 +02:00
|
|
|
InputStream inStream;
|
2006-07-20 18:02:40 +02:00
|
|
|
mp4ff_t *mp4fh;
|
|
|
|
mp4ff_callback_t *cb;
|
2004-05-31 04:42:22 +02:00
|
|
|
int32_t track;
|
2008-04-12 06:16:32 +02:00
|
|
|
int32_t file_time;
|
2004-05-31 04:42:22 +02:00
|
|
|
int32_t scale;
|
2004-11-10 22:58:27 +01:00
|
|
|
int i;
|
2004-05-31 04:42:22 +02:00
|
|
|
|
|
|
|
*mp4MetadataFound = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
if (openInputStream(&inStream, file) < 0) {
|
2005-09-08 23:08:02 +02:00
|
|
|
DEBUG("mp4DataDup: Failed to open file: %s\n", file);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2006-08-26 08:25:57 +02:00
|
|
|
cb = xmalloc(sizeof(mp4ff_callback_t));
|
2004-05-31 04:42:22 +02:00
|
|
|
cb->read = mp4_inputStreamReadCallback;
|
|
|
|
cb->seek = mp4_inputStreamSeekCallback;
|
|
|
|
cb->user_data = &inStream;
|
|
|
|
|
|
|
|
mp4fh = mp4ff_open_read(cb);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!mp4fh) {
|
2004-05-31 04:42:22 +02:00
|
|
|
free(cb);
|
|
|
|
closeInputStream(&inStream);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
track = mp4_getAACTrack(mp4fh);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (track < 0) {
|
2004-05-31 04:42:22 +02:00
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
closeInputStream(&inStream);
|
|
|
|
free(cb);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = newMpdTag();
|
2008-04-12 06:16:32 +02:00
|
|
|
file_time = mp4ff_get_track_duration_use_offsets(mp4fh, track);
|
2006-07-20 18:02:40 +02:00
|
|
|
scale = mp4ff_time_scale(mp4fh, track);
|
|
|
|
if (scale < 0) {
|
2004-05-31 04:42:22 +02:00
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
closeInputStream(&inStream);
|
|
|
|
free(cb);
|
|
|
|
freeMpdTag(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-04-12 06:16:32 +02:00
|
|
|
ret->time = ((float)file_time) / scale + 0.5;
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
for (i = 0; i < mp4ff_meta_get_num_items(mp4fh); i++) {
|
|
|
|
char *item;
|
|
|
|
char *value;
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
mp4ff_meta_get_by_index(mp4fh, i, &item, &value);
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (0 == strcasecmp("artist", item)) {
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_ARTIST, value);
|
|
|
|
*mp4MetadataFound = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("title", item)) {
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_TITLE, value);
|
|
|
|
*mp4MetadataFound = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("album", item)) {
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_ALBUM, value);
|
|
|
|
*mp4MetadataFound = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("track", item)) {
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_TRACK, value);
|
|
|
|
*mp4MetadataFound = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("disc", item)) { /* Is that the correct id? */
|
2006-04-30 21:55:56 +02:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_DISC, value);
|
|
|
|
*mp4MetadataFound = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("genre", item)) {
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_GENRE, value);
|
|
|
|
*mp4MetadataFound = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("date", item)) {
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_DATE, value);
|
|
|
|
*mp4MetadataFound = 1;
|
|
|
|
}
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
free(item);
|
|
|
|
free(value);
|
2004-05-31 04:42:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
closeInputStream(&inStream);
|
|
|
|
free(cb);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MpdTag *mp4TagDup(char *file)
|
|
|
|
{
|
|
|
|
MpdTag *ret = NULL;
|
2004-05-31 04:42:22 +02:00
|
|
|
int mp4MetadataFound = 0;
|
|
|
|
|
|
|
|
ret = mp4DataDup(file, &mp4MetadataFound);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!ret)
|
|
|
|
return NULL;
|
|
|
|
if (!mp4MetadataFound) {
|
|
|
|
MpdTag *temp = id3Dup(file);
|
|
|
|
if (temp) {
|
2004-05-31 04:42:22 +02:00
|
|
|
temp->time = ret->time;
|
|
|
|
freeMpdTag(ret);
|
|
|
|
ret = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-04-12 06:15:30 +02:00
|
|
|
static const char *mp4_suffixes[] = { "m4a", "mp4", NULL };
|
|
|
|
static const char *mp4_mimeTypes[] = { "audio/mp4", "audio/m4a", NULL };
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
InputPlugin mp4Plugin = {
|
2006-07-19 17:54:53 +02:00
|
|
|
"mp4",
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2006-03-16 07:52:46 +01:00
|
|
|
NULL,
|
2006-07-19 17:54:53 +02:00
|
|
|
mp4_decode,
|
2007-06-04 21:24:19 +02:00
|
|
|
NULL,
|
2006-07-19 17:54:53 +02:00
|
|
|
mp4TagDup,
|
2007-06-04 21:24:19 +02:00
|
|
|
INPUT_PLUGIN_STREAM_FILE | INPUT_PLUGIN_STREAM_URL,
|
2007-06-04 20:57:34 +02:00
|
|
|
mp4_suffixes,
|
|
|
|
mp4_mimeTypes
|
2004-05-31 04:42:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-01-14 04:07:53 +01:00
|
|
|
InputPlugin mp4Plugin;
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* HAVE_FAAD */
|