2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2009-01-08 21:37:02 +01:00
|
|
|
*
|
2004-03-18 14:47:41 +01:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-03-18 14:47:41 +01:00
|
|
|
*/
|
|
|
|
|
2009-01-08 21:37:02 +01:00
|
|
|
#include "config.h"
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "decoder_api.h"
|
2009-11-10 19:01:38 +01:00
|
|
|
#include "audio_check.h"
|
2010-05-30 22:36:00 +02:00
|
|
|
#include "tag_table.h"
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2009-02-18 18:40:33 +01:00
|
|
|
#include <glib.h>
|
2006-07-26 05:05:50 +02:00
|
|
|
|
2009-02-18 18:40:33 +01:00
|
|
|
#include <mp4ff.h>
|
2004-03-18 14:47:41 +01:00
|
|
|
#include <faad.h>
|
2009-02-18 18:40:33 +01:00
|
|
|
|
2009-02-18 18:40:40 +01:00
|
|
|
#include <assert.h>
|
2008-11-04 17:04:57 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-02-17 08:51:34 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "mp4ff"
|
|
|
|
|
2004-03-18 17:31:29 +01:00
|
|
|
/* all code here is either based on or copied from FAAD2's frontend code */
|
|
|
|
|
2010-05-31 09:22:42 +02:00
|
|
|
struct mp4ff_input_stream {
|
2008-11-04 17:05:02 +01:00
|
|
|
struct decoder *decoder;
|
2008-11-04 17:05:00 +01:00
|
|
|
struct input_stream *input_stream;
|
|
|
|
};
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static int
|
2009-02-18 18:39:12 +01:00
|
|
|
mp4_get_aac_track(mp4ff_t * infile, faacDecHandle decoder,
|
|
|
|
uint32_t *sample_rate, unsigned char *channels_r)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-18 18:39:12 +01:00
|
|
|
#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. */
|
|
|
|
unsigned long *sample_rate_r = (unsigned long*)sample_rate;
|
|
|
|
#else
|
|
|
|
uint32_t *sample_rate_r = sample_rate;
|
|
|
|
#endif
|
2004-03-18 14:47:41 +01:00
|
|
|
int i, rc;
|
2008-11-04 16:55:12 +01:00
|
|
|
int num_tracks = mp4ff_total_tracks(infile);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
for (i = 0; i < num_tracks; i++) {
|
2004-03-18 14:47:41 +01:00
|
|
|
unsigned char *buff = NULL;
|
2006-07-30 11:13:01 +02:00
|
|
|
unsigned int buff_size = 0;
|
2009-02-18 18:39:12 +01:00
|
|
|
|
|
|
|
if (mp4ff_get_track_type(infile, i) != 1)
|
|
|
|
/* not an audio track */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (decoder == NULL)
|
|
|
|
/* have don't have a decoder to initialize -
|
|
|
|
we're done now, because we found an audio
|
|
|
|
track */
|
|
|
|
return i;
|
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);
|
2009-02-18 18:39:12 +01:00
|
|
|
if (buff == NULL)
|
|
|
|
continue;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2009-02-18 18:39:12 +01:00
|
|
|
rc = faacDecInit2(decoder, buff, buff_size,
|
|
|
|
sample_rate_r, channels_r);
|
|
|
|
free(buff);
|
|
|
|
|
|
|
|
if (rc >= 0)
|
|
|
|
/* found a valid AAC track */
|
2006-07-19 17:54:53 +02:00
|
|
|
return i;
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* can't decode this */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static uint32_t
|
|
|
|
mp4_read(void *user_data, void *buffer, uint32_t length)
|
2004-05-06 20:49:04 +02:00
|
|
|
{
|
2010-05-31 09:22:42 +02:00
|
|
|
struct mp4ff_input_stream *mis = user_data;
|
2008-11-04 17:05:00 +01:00
|
|
|
|
2010-05-31 09:22:42 +02:00
|
|
|
return decoder_read(mis->decoder, mis->input_stream, buffer, length);
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
2006-07-19 17:54:53 +02:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static uint32_t
|
|
|
|
mp4_seek(void *user_data, uint64_t position)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2010-05-31 09:22:42 +02:00
|
|
|
struct mp4ff_input_stream *mis = user_data;
|
2008-11-04 17:05:00 +01:00
|
|
|
|
2010-05-31 09:22:42 +02:00
|
|
|
return input_stream_seek(mis->input_stream, position, SEEK_SET, NULL)
|
2008-10-26 20:56:46 +01:00
|
|
|
? 0 : -1;
|
2006-07-19 17:54:53 +02:00
|
|
|
}
|
|
|
|
|
2009-02-18 18:38:09 +01:00
|
|
|
static faacDecHandle
|
2009-02-18 18:39:12 +01:00
|
|
|
mp4_faad_new(mp4ff_t *mp4fh, int *track_r, struct audio_format *audio_format)
|
2009-02-18 18:38:09 +01:00
|
|
|
{
|
|
|
|
faacDecHandle decoder;
|
|
|
|
faacDecConfigurationPtr config;
|
2009-02-18 18:39:12 +01:00
|
|
|
int track;
|
2009-02-18 18:38:09 +01:00
|
|
|
uint32_t sample_rate;
|
|
|
|
unsigned char channels;
|
2009-11-10 19:01:38 +01:00
|
|
|
GError *error = NULL;
|
2009-02-18 18:38:09 +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);
|
|
|
|
|
2009-02-18 18:39:12 +01:00
|
|
|
track = mp4_get_aac_track(mp4fh, decoder, &sample_rate, &channels);
|
|
|
|
if (track < 0) {
|
|
|
|
g_warning("No AAC track found");
|
2009-02-18 18:38:09 +01:00
|
|
|
faacDecClose(decoder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
if (!audio_format_init_checked(audio_format, sample_rate,
|
|
|
|
SAMPLE_FORMAT_S16, channels,
|
2009-11-10 19:01:38 +01:00
|
|
|
&error)) {
|
|
|
|
g_warning("%s", error->message);
|
|
|
|
g_error_free(error);
|
2009-02-18 18:38:09 +01:00
|
|
|
faacDecClose(decoder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-10 19:01:38 +01:00
|
|
|
*track_r = track;
|
|
|
|
|
2009-02-18 18:38:09 +01:00
|
|
|
return decoder;
|
|
|
|
}
|
|
|
|
|
2008-11-11 17:13:44 +01:00
|
|
|
static void
|
2008-11-04 16:55:12 +01:00
|
|
|
mp4_decode(struct decoder *mpd_decoder, struct input_stream *input_stream)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2010-05-31 09:22:42 +02:00
|
|
|
struct mp4ff_input_stream mis = {
|
2008-11-04 17:05:02 +01:00
|
|
|
.decoder = mpd_decoder,
|
2008-11-04 17:05:00 +01:00
|
|
|
.input_stream = input_stream,
|
|
|
|
};
|
2008-11-04 16:55:12 +01:00
|
|
|
mp4ff_callback_t callback = {
|
|
|
|
.read = mp4_read,
|
|
|
|
.seek = mp4_seek,
|
2010-05-31 09:22:42 +02:00
|
|
|
.user_data = &mis,
|
2008-11-04 16:55:12 +01:00
|
|
|
};
|
2006-07-20 18:02:40 +02:00
|
|
|
mp4ff_t *mp4fh;
|
2004-03-18 14:47:41 +01:00
|
|
|
int32_t track;
|
2008-08-26 08:27:05 +02:00
|
|
|
float file_time, total_time;
|
2004-03-18 14:47:41 +01:00
|
|
|
int32_t scale;
|
2006-07-26 05:05:50 +02:00
|
|
|
faacDecHandle decoder;
|
2009-02-18 18:18:29 +01:00
|
|
|
struct audio_format audio_format;
|
2008-11-04 16:55:12 +01:00
|
|
|
faacDecFrameInfo frame_info;
|
|
|
|
unsigned char *mp4_buffer;
|
|
|
|
unsigned int mp4_buffer_size;
|
|
|
|
long sample_id;
|
|
|
|
long num_samples;
|
2004-03-18 17:31:29 +01:00
|
|
|
long dur;
|
2008-11-04 16:55:12 +01:00
|
|
|
unsigned int sample_count;
|
|
|
|
char *sample_buffer;
|
|
|
|
size_t sample_buffer_length;
|
2004-03-18 20:43:07 +01:00
|
|
|
unsigned int initial = 1;
|
2008-11-04 16:55:12 +01:00
|
|
|
float *seek_table;
|
|
|
|
long seek_table_end = -1;
|
|
|
|
bool seek_position_found = false;
|
2004-03-20 01:54:20 +01:00
|
|
|
long offset;
|
2008-11-04 16:55:12 +01:00
|
|
|
uint16_t bit_rate = 0;
|
2008-10-08 11:03:39 +02:00
|
|
|
bool seeking = false;
|
2008-08-26 08:27:07 +02:00
|
|
|
double seek_where = 0;
|
2008-11-04 17:05:08 +01:00
|
|
|
enum decoder_command cmd = DECODE_COMMAND_NONE;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
mp4fh = mp4ff_open_read(&callback);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!mp4fh) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("Input does not appear to be a mp4 stream.\n");
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
|
|
|
|
2009-02-18 18:39:12 +01:00
|
|
|
decoder = mp4_faad_new(mp4fh, &track, &audio_format);
|
2009-02-18 18:38:09 +01:00
|
|
|
if (decoder == NULL) {
|
2004-03-18 14:47:41 +01:00
|
|
|
mp4ff_close(mp4fh);
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
|
|
|
|
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 (scale < 0) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("Error getting audio format of mp4 AAC track.\n");
|
2004-03-18 14:47:41 +01:00
|
|
|
faacDecClose(decoder);
|
|
|
|
mp4ff_close(mp4fh);
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
2008-08-26 08:27:05 +02:00
|
|
|
total_time = ((float)file_time) / scale;
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
num_samples = mp4ff_num_samples(mp4fh, track);
|
2009-02-18 18:40:33 +01:00
|
|
|
if (num_samples > (long)(G_MAXINT / sizeof(float))) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("Integer overflow.\n");
|
2008-09-12 17:06:04 +02:00
|
|
|
faacDecClose(decoder);
|
|
|
|
mp4ff_close(mp4fh);
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2008-09-12 17:06:04 +02:00
|
|
|
}
|
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
|
|
|
|
2009-02-18 18:40:40 +01:00
|
|
|
seek_table = input_stream->seekable
|
|
|
|
? g_malloc(sizeof(float) * num_samples)
|
|
|
|
: NULL;
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2009-02-18 18:18:29 +01:00
|
|
|
decoder_initialized(mpd_decoder, &audio_format,
|
|
|
|
input_stream->seekable,
|
|
|
|
total_time);
|
|
|
|
|
2008-11-04 17:05:08 +01:00
|
|
|
for (sample_id = 0;
|
|
|
|
sample_id < num_samples && cmd != DECODE_COMMAND_STOP;
|
|
|
|
sample_id++) {
|
|
|
|
if (cmd == DECODE_COMMAND_SEEK) {
|
2009-02-18 18:40:40 +01:00
|
|
|
assert(seek_table != NULL);
|
|
|
|
|
2008-10-08 11:03:39 +02:00
|
|
|
seeking = true;
|
2008-08-26 08:27:07 +02:00
|
|
|
seek_where = decoder_seek_where(mpd_decoder);
|
|
|
|
}
|
2004-07-03 16:49:10 +02:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (seeking && seek_table_end > 1 &&
|
|
|
|
seek_table[seek_table_end] >= seek_where) {
|
2004-03-18 23:20:26 +01:00
|
|
|
int i = 2;
|
2009-02-18 18:40:40 +01:00
|
|
|
|
|
|
|
assert(seek_table != NULL);
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
while (seek_table[i] < seek_where)
|
2006-07-20 18:02:40 +02:00
|
|
|
i++;
|
2008-11-04 16:55:12 +01:00
|
|
|
sample_id = i - 1;
|
|
|
|
file_time = seek_table[sample_id];
|
2004-03-18 23:20:26 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
dur = mp4ff_get_sample_duration(mp4fh, track, sample_id);
|
|
|
|
offset = mp4ff_get_sample_offset(mp4fh, track, sample_id);
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2009-02-18 18:40:40 +01:00
|
|
|
if (seek_table != NULL && sample_id > seek_table_end) {
|
2008-11-04 16:55:12 +01:00
|
|
|
seek_table[sample_id] = file_time;
|
|
|
|
seek_table_end = sample_id;
|
2004-03-18 23:20:26 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (sample_id == 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
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
|
|
|
|
2009-12-25 19:47:33 +01:00
|
|
|
if (seeking && file_time >= seek_where)
|
2008-11-04 16:55:12 +01:00
|
|
|
seek_position_found = true;
|
2004-03-18 23:20:26 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (seeking && seek_position_found) {
|
|
|
|
seek_position_found = false;
|
2004-07-03 16:49:10 +02:00
|
|
|
seeking = 0;
|
2008-08-26 08:27:07 +02:00
|
|
|
decoder_command_finished(mpd_decoder);
|
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;
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (mp4ff_read_sample(mp4fh, track, sample_id, &mp4_buffer,
|
|
|
|
&mp4_buffer_size) == 0)
|
2008-08-26 08:27:06 +02:00
|
|
|
break;
|
|
|
|
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAAD_BUFLEN_FUNCS
|
2008-11-04 16:55:12 +01:00
|
|
|
sample_buffer = faacDecDecode(decoder, &frame_info, mp4_buffer,
|
|
|
|
mp4_buffer_size);
|
2004-03-25 02:08:13 +01:00
|
|
|
#else
|
2008-11-04 16:55:12 +01:00
|
|
|
sample_buffer = faacDecDecode(decoder, &frame_info, mp4_buffer);
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2004-03-22 06:08:14 +01:00
|
|
|
|
2009-02-18 19:08:52 +01:00
|
|
|
free(mp4_buffer);
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (frame_info.error > 0) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("faad2 error: %s\n",
|
|
|
|
faacDecGetErrorMessage(frame_info.error));
|
2004-03-20 02:34:25 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-02-18 18:18:29 +01:00
|
|
|
if (frame_info.channels != audio_format.channels) {
|
|
|
|
g_warning("channel count changed from %u to %u",
|
|
|
|
audio_format.channels, frame_info.channels);
|
|
|
|
break;
|
|
|
|
}
|
2008-11-04 17:05:05 +01:00
|
|
|
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
2009-02-18 18:18:29 +01:00
|
|
|
if (frame_info.samplerate != audio_format.sample_rate) {
|
|
|
|
g_warning("sample rate changed from %u to %lu",
|
|
|
|
audio_format.sample_rate,
|
|
|
|
(unsigned long)frame_info.samplerate);
|
|
|
|
break;
|
2004-03-22 19:44:15 +01:00
|
|
|
}
|
2009-02-18 18:18:29 +01:00
|
|
|
#endif
|
2004-03-22 19:44:15 +01:00
|
|
|
|
2009-02-18 18:38:09 +01:00
|
|
|
if (audio_format.channels * (unsigned long)(dur + offset) > frame_info.samples) {
|
|
|
|
dur = frame_info.samples / audio_format.channels;
|
2004-03-20 02:34:25 +01:00
|
|
|
offset = 0;
|
|
|
|
}
|
2004-03-20 15:44:39 +01:00
|
|
|
|
2009-02-18 18:38:09 +01:00
|
|
|
sample_count = (unsigned long)(dur * audio_format.channels);
|
2004-03-18 17:31:29 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (sample_count > 0) {
|
2006-07-20 18:02:40 +02:00
|
|
|
initial = 0;
|
2008-11-04 16:55:12 +01:00
|
|
|
bit_rate = frame_info.bytesconsumed * 8.0 *
|
|
|
|
frame_info.channels * scale /
|
|
|
|
frame_info.samples / 1000 + 0.5;
|
2004-03-20 15:44:39 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
sample_buffer_length = sample_count * 2;
|
2004-03-20 01:54:20 +01:00
|
|
|
|
2009-02-18 18:38:09 +01:00
|
|
|
sample_buffer += offset * audio_format.channels * 2;
|
2004-03-20 01:54:20 +01:00
|
|
|
|
2008-11-04 17:05:08 +01:00
|
|
|
cmd = decoder_data(mpd_decoder, input_stream,
|
|
|
|
sample_buffer, sample_buffer_length,
|
2010-01-03 22:44:23 +01:00
|
|
|
bit_rate);
|
2004-03-18 17:31:29 +01:00
|
|
|
}
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2009-01-25 18:47:21 +01:00
|
|
|
g_free(seek_table);
|
2004-03-22 06:08:14 +01:00
|
|
|
faacDecClose(decoder);
|
|
|
|
mp4ff_close(mp4fh);
|
2004-03-18 14:47:41 +01:00
|
|
|
}
|
|
|
|
|
2010-05-30 22:36:00 +02:00
|
|
|
static const char *const mp4ff_tag_names[TAG_NUM_OF_ITEM_TYPES] = {
|
|
|
|
[TAG_COMPOSER] = "writer",
|
2010-05-30 22:48:44 +02:00
|
|
|
[TAG_PERFORMER] = "band",
|
2010-05-30 22:36:00 +02:00
|
|
|
};
|
|
|
|
|
2010-05-31 08:47:59 +02:00
|
|
|
static enum tag_type
|
|
|
|
mp4ff_tag_name_parse(const char *name)
|
|
|
|
{
|
2010-05-31 08:48:41 +02:00
|
|
|
enum tag_type type = tag_table_lookup(mp4ff_tag_names, name);
|
|
|
|
if (type == TAG_NUM_OF_ITEM_TYPES)
|
|
|
|
type = tag_name_parse_i(name);
|
|
|
|
|
|
|
|
return type;
|
2010-05-31 08:47:59 +02:00
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static struct tag *
|
2009-12-31 18:20:08 +01:00
|
|
|
mp4_stream_tag(struct input_stream *is)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-08-29 09:38:11 +02:00
|
|
|
struct tag *ret = NULL;
|
2010-05-31 09:22:42 +02:00
|
|
|
struct mp4ff_input_stream mis = {
|
2008-11-04 17:05:02 +01:00
|
|
|
.decoder = NULL,
|
2009-12-31 18:20:08 +01:00
|
|
|
.input_stream = is,
|
2008-11-04 17:05:00 +01:00
|
|
|
};
|
2008-11-04 16:55:12 +01:00
|
|
|
mp4ff_callback_t callback = {
|
|
|
|
.read = mp4_read,
|
|
|
|
.seek = mp4_seek,
|
2010-05-31 09:22:42 +02:00
|
|
|
.user_data = &mis,
|
2008-11-04 16:55:12 +01:00
|
|
|
};
|
2006-07-20 18:02:40 +02:00
|
|
|
mp4ff_t *mp4fh;
|
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
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
mp4fh = mp4ff_open_read(&callback);
|
2009-12-31 18:20:08 +01:00
|
|
|
if (mp4fh == NULL)
|
2004-05-31 04:42:22 +02:00
|
|
|
return NULL;
|
|
|
|
|
2009-02-18 18:39:12 +01:00
|
|
|
track = mp4_get_aac_track(mp4fh, NULL, NULL, NULL);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (track < 0) {
|
2004-05-31 04:42:22 +02:00
|
|
|
mp4ff_close(mp4fh);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-29 09:38:21 +02:00
|
|
|
ret = tag_new();
|
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);
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_free(ret);
|
2004-05-31 04:42:22 +02:00
|
|
|
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
|
|
|
|
2010-05-31 08:47:59 +02:00
|
|
|
enum tag_type type = mp4ff_tag_name_parse(item);
|
2010-05-30 22:36:00 +02:00
|
|
|
if (type != TAG_NUM_OF_ITEM_TYPES)
|
|
|
|
tag_add_item(ret, type, value);
|
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);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-11-01 14:55:23 +01:00
|
|
|
static const char *const mp4_suffixes[] = { "m4a", "mp4", NULL };
|
2008-11-04 16:55:12 +01:00
|
|
|
static const char *const mp4_mime_types[] = { "audio/mp4", "audio/m4a", NULL };
|
2004-05-31 04:42:22 +02:00
|
|
|
|
2009-02-17 08:45:26 +01:00
|
|
|
const struct decoder_plugin mp4ff_decoder_plugin = {
|
2010-05-30 22:33:15 +02:00
|
|
|
.name = "mp4ff",
|
2008-09-29 15:55:17 +02:00
|
|
|
.stream_decode = mp4_decode,
|
2009-12-31 18:20:08 +01:00
|
|
|
.stream_tag = mp4_stream_tag,
|
2008-09-29 15:55:17 +02:00
|
|
|
.suffixes = mp4_suffixes,
|
2008-11-04 16:55:12 +01:00
|
|
|
.mime_types = mp4_mime_types,
|
2004-05-31 04:42:22 +02:00
|
|
|
};
|