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
|
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.
|
|
|
|
* 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-18 14:47:41 +01:00
|
|
|
|
2008-10-25 20:59:36 +02:00
|
|
|
#include "mp4ff.h"
|
2006-07-26 05:05:50 +02:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <limits.h>
|
2004-03-18 14:47:41 +01:00
|
|
|
#include <faad.h>
|
2008-11-04 17:04:57 +01:00
|
|
|
#include <glib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2004-03-18 17:31:29 +01:00
|
|
|
/* all code here is either based on or copied from FAAD2's frontend code */
|
|
|
|
|
2008-11-04 17:05:00 +01:00
|
|
|
struct mp4_context {
|
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
|
|
|
|
mp4_get_aac_track(mp4ff_t * infile)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-03-18 14:47:41 +01:00
|
|
|
/* find AAC track */
|
|
|
|
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;
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-11-04 17:05:00 +01:00
|
|
|
struct mp4_context *ctx = user_data;
|
|
|
|
|
2008-11-04 17:05:02 +01:00
|
|
|
return decoder_read(ctx->decoder, ctx->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
|
|
|
{
|
2008-11-04 17:05:00 +01:00
|
|
|
struct mp4_context *ctx = user_data;
|
|
|
|
|
|
|
|
return input_stream_seek(ctx->input_stream, position, SEEK_SET)
|
2008-10-26 20:56:46 +01:00
|
|
|
? 0 : -1;
|
2006-07-19 17:54:53 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-11-04 17:05:00 +01:00
|
|
|
struct mp4_context ctx = {
|
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,
|
2008-11-04 17:05:00 +01:00
|
|
|
.user_data = &ctx,
|
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;
|
2008-11-04 16:55:12 +01:00
|
|
|
faacDecFrameInfo frame_info;
|
2006-07-26 05:05:50 +02:00
|
|
|
faacDecConfigurationPtr config;
|
2008-11-04 16:55:12 +01:00
|
|
|
unsigned char *mp4_buffer;
|
|
|
|
unsigned int mp4_buffer_size;
|
2008-10-10 14:40:54 +02:00
|
|
|
uint32_t sample_rate;
|
2008-11-16 20:04:49 +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
|
|
|
unsigned char channels;
|
2008-11-04 16:55:12 +01:00
|
|
|
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-10-08 11:03:39 +02:00
|
|
|
bool initialized = false;
|
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
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
track = mp4_get_aac_track(mp4fh);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (track < 0) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("No AAC track found in mp4 stream.\n");
|
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
|
|
|
}
|
|
|
|
|
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-11-04 16:55:12 +01:00
|
|
|
mp4_buffer = NULL;
|
|
|
|
mp4_buffer_size = 0;
|
|
|
|
mp4ff_get_decoder_config(mp4fh, track, &mp4_buffer, &mp4_buffer_size);
|
2004-03-18 14:47:41 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (faacDecInit2(decoder, mp4_buffer, mp4_buffer_size,
|
2008-11-16 20:04:49 +01:00
|
|
|
sample_rate_r, &channels) < 0) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("Not an AAC stream.\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-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
|
|
|
|
2009-01-25 18:47:21 +01:00
|
|
|
free(mp4_buffer);
|
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);
|
|
|
|
if (num_samples > (long)(INT_MAX / 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
|
|
|
|
2008-11-04 17:04:57 +01:00
|
|
|
seek_table = g_malloc(sizeof(float) * num_samples);
|
2004-03-18 23:20:26 +01:00
|
|
|
|
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) {
|
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;
|
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
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (sample_id > seek_table_end) {
|
|
|
|
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
|
|
|
|
2008-08-26 08:27:07 +02: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
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (mp4_buffer)
|
|
|
|
free(mp4_buffer);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
if (!initialized) {
|
2008-11-04 17:05:05 +01:00
|
|
|
struct audio_format audio_format = {
|
|
|
|
.bits = 16,
|
|
|
|
.channels = frame_info.channels,
|
|
|
|
};
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
channels = frame_info.channels;
|
2004-03-25 02:08:13 +01:00
|
|
|
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
|
2008-11-04 16:55:12 +01:00
|
|
|
scale = frame_info.samplerate;
|
2004-03-25 02:08:13 +01:00
|
|
|
#endif
|
2008-10-10 14:40:54 +02:00
|
|
|
audio_format.sample_rate = scale;
|
2008-11-21 20:27:30 +01:00
|
|
|
|
|
|
|
if (!audio_format_valid(&audio_format)) {
|
|
|
|
g_warning("Invalid audio format: %u:%u:%u\n",
|
|
|
|
audio_format.sample_rate,
|
|
|
|
audio_format.bits,
|
|
|
|
audio_format.channels);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_initialized(mpd_decoder, &audio_format,
|
2008-11-04 16:55:12 +01:00
|
|
|
input_stream->seekable,
|
|
|
|
total_time);
|
2008-10-08 11:03:39 +02:00
|
|
|
initialized = true;
|
2004-03-22 19:44:15 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
if (channels * (unsigned long)(dur + offset) > frame_info.samples) {
|
|
|
|
dur = frame_info.samples / channels;
|
2004-03-20 02:34:25 +01:00
|
|
|
offset = 0;
|
|
|
|
}
|
2004-03-20 15:44:39 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
sample_count = (unsigned long)(dur * 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
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
sample_buffer += offset * 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,
|
|
|
|
file_time, bit_rate, NULL);
|
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
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static struct tag *
|
2008-11-04 17:04:54 +01:00
|
|
|
mp4_load_tag(const char *file)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-08-29 09:38:11 +02:00
|
|
|
struct tag *ret = NULL;
|
2008-11-04 16:55:12 +01:00
|
|
|
struct input_stream input_stream;
|
2008-11-04 17:05:00 +01:00
|
|
|
struct mp4_context ctx = {
|
2008-11-04 17:05:02 +01:00
|
|
|
.decoder = NULL,
|
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,
|
2008-11-04 17:05:00 +01:00
|
|
|
.user_data = &ctx,
|
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
|
|
|
if (!input_stream_open(&input_stream, file)) {
|
2008-11-04 17:04:57 +01:00
|
|
|
g_warning("mp4_load_tag: Failed to open file: %s\n", file);
|
2005-09-08 23:08:02 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2004-05-31 04:42:22 +02: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 16:55:12 +01:00
|
|
|
input_stream_close(&input_stream);
|
2004-05-31 04:42:22 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
track = mp4_get_aac_track(mp4fh);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (track < 0) {
|
2004-05-31 04:42:22 +02:00
|
|
|
mp4ff_close(mp4fh);
|
2008-11-04 16:55:12 +01:00
|
|
|
input_stream_close(&input_stream);
|
2004-05-31 04:42:22 +02:00
|
|
|
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-11-04 16:55:12 +01:00
|
|
|
input_stream_close(&input_stream);
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (0 == strcasecmp("artist", item)) {
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_ARTIST, value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("title", item)) {
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_TITLE, value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("album", item)) {
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_ALBUM, value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("track", item)) {
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_TRACK, value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("disc", item)) { /* Is that the correct id? */
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_DISC, value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("genre", item)) {
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_GENRE, value);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (0 == strcasecmp("date", item)) {
|
2008-08-29 09:38:21 +02:00
|
|
|
tag_add_item(ret, TAG_ITEM_DATE, value);
|
2008-12-29 11:29:01 +01:00
|
|
|
} else if (0 == strcasecmp("writer", item)) {
|
|
|
|
tag_add_item(ret, TAG_ITEM_COMPOSER, value);
|
2004-11-10 22:58:27 +01:00
|
|
|
}
|
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);
|
2008-11-04 16:55:12 +01:00
|
|
|
input_stream_close(&input_stream);
|
2004-05-31 04:42:22 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static struct tag *
|
|
|
|
mp4_tag_dup(const char *file)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-01-17 13:23:42 +01:00
|
|
|
return mp4_load_tag(file);
|
2004-05-31 04:42:22 +02:00
|
|
|
}
|
|
|
|
|
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 = {
|
2008-09-29 15:55:17 +02:00
|
|
|
.name = "mp4",
|
|
|
|
.stream_decode = mp4_decode,
|
2008-11-04 16:55:12 +01:00
|
|
|
.tag_dup = mp4_tag_dup,
|
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
|
|
|
};
|