2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-26 00:37:04 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-17 22:27:33 +02: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.
|
2008-10-17 22:27:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-01-26 00:37:04 +01:00
|
|
|
/* necessary because libavutil/common.h uses UINT64_C */
|
|
|
|
#define __STDC_CONSTANT_MACROS
|
|
|
|
|
2009-01-08 21:37:02 +01:00
|
|
|
#include "config.h"
|
2013-01-26 00:37:04 +01:00
|
|
|
#include "FfmpegDecoderPlugin.hxx"
|
2013-07-28 13:18:48 +02:00
|
|
|
#include "DecoderAPI.hxx"
|
2013-01-26 00:37:04 +01:00
|
|
|
#include "FfmpegMetaData.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/TagHandler.hxx"
|
2013-01-24 19:14:40 +01:00
|
|
|
#include "InputStream.hxx"
|
2013-07-29 07:50:08 +02:00
|
|
|
#include "CheckAudioFormat.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-01-26 00:37:04 +01:00
|
|
|
|
2009-01-01 18:09:24 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-10-30 19:03:38 +01:00
|
|
|
#include <assert.h>
|
2008-10-17 22:27:33 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-01-26 00:37:04 +01:00
|
|
|
extern "C" {
|
2008-10-21 08:34:19 +02:00
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include <libavformat/avio.h>
|
2012-01-12 18:45:18 +01:00
|
|
|
#include <libavutil/avutil.h>
|
2010-02-27 19:32:59 +01:00
|
|
|
#include <libavutil/log.h>
|
2012-01-04 21:54:54 +01:00
|
|
|
#include <libavutil/mathematics.h>
|
2012-01-12 18:45:18 +01:00
|
|
|
#include <libavutil/dict.h>
|
2013-01-26 00:37:04 +01:00
|
|
|
}
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2008-11-21 20:13:41 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "ffmpeg"
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
/* suppress the ffmpeg compatibility macro */
|
|
|
|
#ifdef SampleFormat
|
|
|
|
#undef SampleFormat
|
|
|
|
#endif
|
|
|
|
|
2010-02-27 19:32:59 +01:00
|
|
|
static GLogLevelFlags
|
|
|
|
level_ffmpeg_to_glib(int level)
|
|
|
|
{
|
|
|
|
if (level <= AV_LOG_FATAL)
|
|
|
|
return G_LOG_LEVEL_CRITICAL;
|
|
|
|
|
|
|
|
if (level <= AV_LOG_ERROR)
|
|
|
|
return G_LOG_LEVEL_WARNING;
|
|
|
|
|
|
|
|
if (level <= AV_LOG_INFO)
|
|
|
|
return G_LOG_LEVEL_MESSAGE;
|
|
|
|
|
|
|
|
return G_LOG_LEVEL_DEBUG;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
mpd_ffmpeg_log_callback(gcc_unused void *ptr, int level,
|
2010-02-27 19:32:59 +01:00
|
|
|
const char *fmt, va_list vl)
|
|
|
|
{
|
2010-04-11 19:18:30 +02:00
|
|
|
const AVClass * cls = NULL;
|
2010-03-28 19:48:57 +02:00
|
|
|
|
2010-04-11 19:18:30 +02:00
|
|
|
if (ptr != NULL)
|
|
|
|
cls = *(const AVClass *const*)ptr;
|
|
|
|
|
|
|
|
if (cls != NULL) {
|
|
|
|
char *domain = g_strconcat(G_LOG_DOMAIN, "/", cls->item_name(ptr), NULL);
|
|
|
|
g_logv(domain, level_ffmpeg_to_glib(level), fmt, vl);
|
|
|
|
g_free(domain);
|
|
|
|
}
|
2010-02-27 19:32:59 +01:00
|
|
|
}
|
|
|
|
|
2013-08-05 00:09:02 +02:00
|
|
|
struct AvioStream {
|
2008-10-17 22:27:33 +02:00
|
|
|
struct decoder *decoder;
|
2008-10-26 19:54:57 +01:00
|
|
|
struct input_stream *input;
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2011-05-09 21:16:43 +02:00
|
|
|
AVIOContext *io;
|
2013-01-28 20:53:48 +01:00
|
|
|
|
2010-06-30 08:59:31 +02:00
|
|
|
unsigned char buffer[8192];
|
2013-08-05 00:09:02 +02:00
|
|
|
|
|
|
|
AvioStream(struct decoder *_decoder, input_stream *_input)
|
|
|
|
:decoder(_decoder), input(_input), io(nullptr) {}
|
|
|
|
|
|
|
|
~AvioStream() {
|
|
|
|
if (io != nullptr)
|
|
|
|
av_free(io);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Open();
|
2010-06-30 08:59:31 +02:00
|
|
|
};
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2010-06-30 08:59:31 +02:00
|
|
|
static int
|
|
|
|
mpd_ffmpeg_stream_read(void *opaque, uint8_t *buf, int size)
|
2008-10-17 22:27:33 +02:00
|
|
|
{
|
2013-08-05 00:09:02 +02:00
|
|
|
AvioStream *stream = (AvioStream *)opaque;
|
2008-10-30 19:02:01 +01:00
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
return decoder_read(stream->decoder, stream->input,
|
|
|
|
(void *)buf, size);
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
|
|
|
|
2010-06-30 08:59:31 +02:00
|
|
|
static int64_t
|
|
|
|
mpd_ffmpeg_stream_seek(void *opaque, int64_t pos, int whence)
|
2008-10-17 22:27:33 +02:00
|
|
|
{
|
2013-08-05 00:09:02 +02:00
|
|
|
AvioStream *stream = (AvioStream *)opaque;
|
2008-11-16 20:25:31 +01:00
|
|
|
|
|
|
|
if (whence == AVSEEK_SIZE)
|
|
|
|
return stream->input->size;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-09-05 00:06:31 +02:00
|
|
|
if (!stream->input->LockSeek(pos, whence, error))
|
2008-11-16 20:25:31 +01:00
|
|
|
return -1;
|
|
|
|
|
2008-11-04 16:55:11 +01:00
|
|
|
return stream->input->offset;
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
|
|
|
|
2013-08-05 00:09:02 +02:00
|
|
|
bool
|
|
|
|
AvioStream::Open()
|
2008-10-17 22:27:33 +02:00
|
|
|
{
|
2013-08-05 00:09:02 +02:00
|
|
|
io = avio_alloc_context(buffer, sizeof(buffer),
|
|
|
|
false, this,
|
|
|
|
mpd_ffmpeg_stream_read, nullptr,
|
|
|
|
input->seekable
|
|
|
|
? mpd_ffmpeg_stream_seek : nullptr);
|
|
|
|
return io != nullptr;
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
|
|
|
|
2011-07-18 23:31:47 +02:00
|
|
|
/**
|
|
|
|
* API compatibility wrapper for av_open_input_stream() and
|
|
|
|
* avformat_open_input().
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
mpd_ffmpeg_open_input(AVFormatContext **ic_ptr,
|
|
|
|
AVIOContext *pb,
|
|
|
|
const char *filename,
|
|
|
|
AVInputFormat *fmt)
|
|
|
|
{
|
|
|
|
AVFormatContext *context = avformat_alloc_context();
|
|
|
|
if (context == NULL)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
|
|
|
context->pb = pb;
|
|
|
|
*ic_ptr = context;
|
|
|
|
return avformat_open_input(ic_ptr, filename, fmt, NULL);
|
|
|
|
}
|
|
|
|
|
2009-02-15 18:34:14 +01:00
|
|
|
static bool
|
2013-08-04 11:30:26 +02:00
|
|
|
ffmpeg_init(gcc_unused const config_param ¶m)
|
2008-10-17 22:27:33 +02:00
|
|
|
{
|
2010-02-27 19:32:59 +01:00
|
|
|
av_log_set_callback(mpd_ffmpeg_log_callback);
|
|
|
|
|
2008-10-17 22:27:33 +02:00
|
|
|
av_register_all();
|
2008-10-30 08:38:54 +01:00
|
|
|
return true;
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
|
|
|
|
2008-11-04 16:55:12 +01:00
|
|
|
static int
|
|
|
|
ffmpeg_find_audio_stream(const AVFormatContext *format_context)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < format_context->nb_streams; ++i)
|
|
|
|
if (format_context->streams[i]->codec->codec_type ==
|
2011-05-02 20:53:15 +02:00
|
|
|
AVMEDIA_TYPE_AUDIO)
|
2008-11-04 16:55:12 +01:00
|
|
|
return i;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_const
|
2011-09-15 21:03:03 +02:00
|
|
|
static double
|
|
|
|
time_from_ffmpeg(int64_t t, const AVRational time_base)
|
|
|
|
{
|
|
|
|
assert(t != (int64_t)AV_NOPTS_VALUE);
|
|
|
|
|
2011-09-15 21:07:32 +02:00
|
|
|
return (double)av_rescale_q(t, time_base, (AVRational){1, 1024})
|
|
|
|
/ (double)1024;
|
2011-09-15 21:03:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_const
|
2011-09-15 21:12:53 +02:00
|
|
|
static int64_t
|
|
|
|
time_to_ffmpeg(double t, const AVRational time_base)
|
|
|
|
{
|
|
|
|
return av_rescale_q((int64_t)(t * 1024), (AVRational){1, 1024},
|
|
|
|
time_base);
|
|
|
|
}
|
|
|
|
|
2012-10-05 16:29:40 +02:00
|
|
|
static void
|
2012-10-05 16:38:41 +02:00
|
|
|
copy_interleave_frame2(uint8_t *dest, uint8_t **src,
|
|
|
|
unsigned nframes, unsigned nchannels,
|
|
|
|
unsigned sample_size)
|
2012-10-05 16:29:40 +02:00
|
|
|
{
|
2012-10-05 16:38:41 +02:00
|
|
|
for (unsigned frame = 0; frame < nframes; ++frame) {
|
|
|
|
for (unsigned channel = 0; channel < nchannels; ++channel) {
|
|
|
|
memcpy(dest, src[channel] + frame * sample_size,
|
|
|
|
sample_size);
|
|
|
|
dest += sample_size;
|
|
|
|
}
|
2012-10-05 16:29:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-04 22:10:38 +01:00
|
|
|
/**
|
|
|
|
* Copy PCM data from a AVFrame to an interleaved buffer.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
copy_interleave_frame(const AVCodecContext *codec_context,
|
|
|
|
const AVFrame *frame,
|
2013-08-07 15:04:26 +02:00
|
|
|
uint8_t **output_buffer,
|
|
|
|
uint8_t **global_buffer, int *global_buffer_size)
|
2012-01-04 22:10:38 +01:00
|
|
|
{
|
|
|
|
int plane_size;
|
|
|
|
const int data_size =
|
|
|
|
av_samples_get_buffer_size(&plane_size,
|
|
|
|
codec_context->channels,
|
|
|
|
frame->nb_samples,
|
|
|
|
codec_context->sample_fmt, 1);
|
|
|
|
if (av_sample_fmt_is_planar(codec_context->sample_fmt) &&
|
|
|
|
codec_context->channels > 1) {
|
2013-08-07 15:04:26 +02:00
|
|
|
if(*global_buffer_size < data_size) {
|
|
|
|
av_freep(global_buffer);
|
|
|
|
|
|
|
|
*global_buffer = (uint8_t*)av_malloc(data_size);
|
|
|
|
|
|
|
|
if (!*global_buffer)
|
|
|
|
/* Not enough memory - shouldn't happen */
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
*global_buffer_size = data_size;
|
|
|
|
}
|
|
|
|
*output_buffer = *global_buffer;
|
|
|
|
copy_interleave_frame2(*output_buffer, frame->extended_data,
|
2012-10-05 16:38:41 +02:00
|
|
|
frame->nb_samples,
|
|
|
|
codec_context->channels,
|
|
|
|
av_get_bytes_per_sample(codec_context->sample_fmt));
|
2012-01-04 22:10:38 +01:00
|
|
|
} else {
|
2013-08-07 15:04:26 +02:00
|
|
|
*output_buffer = frame->extended_data[0];
|
2012-01-04 22:10:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return data_size;
|
|
|
|
}
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
static DecoderCommand
|
2008-10-30 19:09:20 +01:00
|
|
|
ffmpeg_send_packet(struct decoder *decoder, struct input_stream *is,
|
|
|
|
const AVPacket *packet,
|
2008-10-30 19:03:20 +01:00
|
|
|
AVCodecContext *codec_context,
|
2013-03-22 07:05:00 +01:00
|
|
|
const AVRational *time_base,
|
2013-08-07 15:04:26 +02:00
|
|
|
AVFrame *frame,
|
|
|
|
uint8_t **buffer, int *buffer_size)
|
2008-10-30 19:03:20 +01:00
|
|
|
{
|
2012-10-05 16:35:45 +02:00
|
|
|
if (packet->pts >= 0 && packet->pts != (int64_t)AV_NOPTS_VALUE)
|
2010-01-18 13:11:04 +01:00
|
|
|
decoder_timestamp(decoder,
|
2011-09-15 21:03:03 +02:00
|
|
|
time_from_ffmpeg(packet->pts, *time_base));
|
2010-01-18 13:11:04 +01:00
|
|
|
|
2011-04-12 08:16:57 +02:00
|
|
|
AVPacket packet2 = *packet;
|
2008-12-15 18:35:34 +01:00
|
|
|
|
2013-08-07 15:04:26 +02:00
|
|
|
uint8_t *output_buffer;
|
2009-11-15 17:39:09 +01:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand cmd = DecoderCommand::NONE;
|
|
|
|
while (packet2.size > 0 && cmd == DecoderCommand::NONE) {
|
2013-08-07 15:04:26 +02:00
|
|
|
int audio_size = 0;
|
2012-01-04 22:10:38 +01:00
|
|
|
int got_frame = 0;
|
|
|
|
int len = avcodec_decode_audio4(codec_context,
|
2013-03-22 07:05:00 +01:00
|
|
|
frame, &got_frame,
|
2012-01-04 22:10:38 +01:00
|
|
|
&packet2);
|
|
|
|
if (len >= 0 && got_frame) {
|
|
|
|
audio_size = copy_interleave_frame(codec_context,
|
2013-03-22 07:05:00 +01:00
|
|
|
frame,
|
2013-08-07 15:04:26 +02:00
|
|
|
&output_buffer,
|
|
|
|
buffer, buffer_size);
|
2012-01-04 22:10:38 +01:00
|
|
|
if (audio_size < 0)
|
|
|
|
len = audio_size;
|
2013-08-07 15:04:26 +02:00
|
|
|
}
|
2008-12-15 18:35:34 +01:00
|
|
|
|
|
|
|
if (len < 0) {
|
|
|
|
/* if error, we skip the frame */
|
2012-05-22 23:40:43 +02:00
|
|
|
g_message("decoding failed, frame skipped\n");
|
2008-12-15 18:35:34 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-04-12 08:16:57 +02:00
|
|
|
packet2.data += len;
|
|
|
|
packet2.size -= len;
|
2008-12-15 18:35:34 +01:00
|
|
|
|
2009-02-03 21:44:14 +01:00
|
|
|
if (audio_size <= 0)
|
2008-12-15 18:35:34 +01:00
|
|
|
continue;
|
2009-02-03 21:44:14 +01:00
|
|
|
|
2008-12-15 18:35:34 +01:00
|
|
|
cmd = decoder_data(decoder, is,
|
2013-08-07 15:04:26 +02:00
|
|
|
output_buffer, audio_size,
|
2010-01-03 22:44:23 +01:00
|
|
|
codec_context->bit_rate / 1000);
|
2008-10-30 19:03:20 +01:00
|
|
|
}
|
2008-12-15 18:35:34 +01:00
|
|
|
return cmd;
|
2008-10-30 19:03:20 +01:00
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_const
|
2013-08-03 21:00:50 +02:00
|
|
|
static SampleFormat
|
2012-10-05 15:14:57 +02:00
|
|
|
ffmpeg_sample_format(enum AVSampleFormat sample_fmt)
|
2009-11-10 17:11:34 +01:00
|
|
|
{
|
2012-10-05 15:14:57 +02:00
|
|
|
switch (sample_fmt) {
|
2012-02-03 09:55:25 +01:00
|
|
|
case AV_SAMPLE_FMT_S16:
|
2012-10-05 15:27:04 +02:00
|
|
|
case AV_SAMPLE_FMT_S16P:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::S16;
|
2009-11-10 17:11:34 +01:00
|
|
|
|
2012-02-03 09:55:25 +01:00
|
|
|
case AV_SAMPLE_FMT_S32:
|
2012-10-05 15:27:04 +02:00
|
|
|
case AV_SAMPLE_FMT_S32P:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::S32;
|
2009-11-10 17:11:34 +01:00
|
|
|
|
2013-01-16 18:02:58 +01:00
|
|
|
case AV_SAMPLE_FMT_FLTP:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::FLOAT;
|
2013-01-16 18:02:58 +01:00
|
|
|
|
2010-11-04 20:04:15 +01:00
|
|
|
default:
|
2012-10-05 14:55:19 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buffer[64];
|
|
|
|
const char *name = av_get_sample_fmt_string(buffer, sizeof(buffer),
|
|
|
|
sample_fmt);
|
|
|
|
if (name != NULL)
|
|
|
|
g_warning("Unsupported libavcodec SampleFormat value: %s (%d)",
|
|
|
|
name, sample_fmt);
|
|
|
|
else
|
2010-11-04 20:04:15 +01:00
|
|
|
g_warning("Unsupported libavcodec SampleFormat value: %d",
|
2012-10-05 15:14:57 +02:00
|
|
|
sample_fmt);
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::UNDEFINED;
|
2009-11-10 17:11:34 +01:00
|
|
|
}
|
|
|
|
|
2010-06-30 20:32:29 +02:00
|
|
|
static AVInputFormat *
|
|
|
|
ffmpeg_probe(struct decoder *decoder, struct input_stream *is)
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
BUFFER_SIZE = 16384,
|
|
|
|
PADDING = 16,
|
|
|
|
};
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
|
2013-01-26 00:37:04 +01:00
|
|
|
unsigned char *buffer = (unsigned char *)g_malloc(BUFFER_SIZE);
|
2010-06-30 20:32:29 +02:00
|
|
|
size_t nbytes = decoder_read(decoder, is, buffer, BUFFER_SIZE);
|
2013-09-05 00:06:31 +02:00
|
|
|
if (nbytes <= PADDING || !is->LockSeek(0, SEEK_SET, error)) {
|
2010-06-30 20:32:29 +02:00
|
|
|
g_free(buffer);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* some ffmpeg parsers (e.g. ac3_parser.c) read a few bytes
|
|
|
|
beyond the declared buffer limit, which makes valgrind
|
|
|
|
angry; this workaround removes some padding from the buffer
|
|
|
|
size */
|
|
|
|
nbytes -= PADDING;
|
|
|
|
|
2013-01-26 00:37:04 +01:00
|
|
|
AVProbeData avpd;
|
|
|
|
avpd.buf = buffer;
|
|
|
|
avpd.buf_size = nbytes;
|
2013-01-28 23:41:45 +01:00
|
|
|
avpd.filename = is->uri.c_str();
|
2010-06-30 20:32:29 +02:00
|
|
|
|
|
|
|
AVInputFormat *format = av_probe_input_format(&avpd, true);
|
|
|
|
g_free(buffer);
|
|
|
|
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
|
2010-01-18 10:59:11 +01:00
|
|
|
static void
|
|
|
|
ffmpeg_decode(struct decoder *decoder, struct input_stream *input)
|
2008-10-17 22:27:33 +02:00
|
|
|
{
|
2010-06-30 20:32:29 +02:00
|
|
|
AVInputFormat *input_format = ffmpeg_probe(decoder, input);
|
|
|
|
if (input_format == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_debug("detected input format '%s' (%s)",
|
|
|
|
input_format->name, input_format->long_name);
|
|
|
|
|
2013-08-05 00:09:02 +02:00
|
|
|
AvioStream stream(decoder, input);
|
|
|
|
if (!stream.Open()) {
|
2010-06-30 08:59:31 +02:00
|
|
|
g_warning("Failed to open stream");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-18 10:59:11 +01:00
|
|
|
//ffmpeg works with ours "fileops" helper
|
2011-07-03 14:54:56 +02:00
|
|
|
AVFormatContext *format_context = NULL;
|
2013-08-05 00:09:02 +02:00
|
|
|
if (mpd_ffmpeg_open_input(&format_context, stream.io,
|
2013-01-28 23:41:45 +01:00
|
|
|
input->uri.c_str(),
|
2011-07-18 23:31:47 +02:00
|
|
|
input_format) != 0) {
|
2010-01-18 10:59:11 +01:00
|
|
|
g_warning("Open failed\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-05 00:02:46 +01:00
|
|
|
const int find_result =
|
|
|
|
avformat_find_stream_info(format_context, NULL);
|
|
|
|
if (find_result < 0) {
|
2010-01-18 10:59:11 +01:00
|
|
|
g_warning("Couldn't find stream info\n");
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&format_context);
|
2010-01-18 10:59:11 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2011-04-12 08:17:30 +02:00
|
|
|
int audio_stream = ffmpeg_find_audio_stream(format_context);
|
2010-01-18 10:59:11 +01:00
|
|
|
if (audio_stream == -1) {
|
|
|
|
g_warning("No audio stream inside\n");
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&format_context);
|
2010-01-18 10:59:11 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2011-09-15 21:14:53 +02:00
|
|
|
AVStream *av_stream = format_context->streams[audio_stream];
|
|
|
|
|
|
|
|
AVCodecContext *codec_context = av_stream->codec;
|
2010-01-18 10:59:11 +01:00
|
|
|
if (codec_context->codec_name[0] != 0)
|
|
|
|
g_debug("codec '%s'", codec_context->codec_name);
|
|
|
|
|
2011-04-12 08:17:30 +02:00
|
|
|
AVCodec *codec = avcodec_find_decoder(codec_context->codec_id);
|
2010-01-18 10:59:11 +01:00
|
|
|
|
|
|
|
if (!codec) {
|
|
|
|
g_warning("Unsupported audio codec\n");
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&format_context);
|
2010-01-18 10:59:11 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const SampleFormat sample_format =
|
2012-10-05 15:14:57 +02:00
|
|
|
ffmpeg_sample_format(codec_context->sample_fmt);
|
2013-08-03 21:00:50 +02:00
|
|
|
if (sample_format == SampleFormat::UNDEFINED)
|
2012-10-05 14:52:30 +02:00
|
|
|
return;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-08-03 21:00:50 +02:00
|
|
|
AudioFormat audio_format;
|
|
|
|
if (!audio_format_init_checked(audio_format,
|
2009-11-10 17:11:34 +01:00
|
|
|
codec_context->sample_rate,
|
2012-10-05 14:52:30 +02:00
|
|
|
sample_format,
|
2013-08-10 18:02:44 +02:00
|
|
|
codec_context->channels, error)) {
|
|
|
|
g_warning("%s", error.GetMessage());
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&format_context);
|
2011-11-27 23:39:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the audio format must be read from AVCodecContext by now,
|
|
|
|
because avcodec_open() has been demonstrated to fill bogus
|
|
|
|
values into AVCodecContext.channels - a change that will be
|
|
|
|
reverted later by avcodec_decode_audio3() */
|
|
|
|
|
2012-01-04 21:41:28 +01:00
|
|
|
const int open_result = avcodec_open2(codec_context, codec, NULL);
|
|
|
|
if (open_result < 0) {
|
2011-11-27 23:39:21 +01:00
|
|
|
g_warning("Could not open codec\n");
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&format_context);
|
2010-01-18 10:59:11 +01:00
|
|
|
return;
|
2008-11-21 20:27:30 +01:00
|
|
|
}
|
|
|
|
|
2010-01-18 10:59:11 +01:00
|
|
|
int total_time = format_context->duration != (int64_t)AV_NOPTS_VALUE
|
|
|
|
? format_context->duration / AV_TIME_BASE
|
|
|
|
: 0;
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
decoder_initialized(decoder, audio_format,
|
2010-01-18 10:59:11 +01:00
|
|
|
input->seekable, total_time);
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2013-03-22 07:05:00 +01:00
|
|
|
AVFrame *frame = avcodec_alloc_frame();
|
|
|
|
if (!frame) {
|
|
|
|
g_warning("Could not allocate frame\n");
|
|
|
|
avformat_close_input(&format_context);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-07 15:04:26 +02:00
|
|
|
uint8_t *interleaved_buffer = NULL;
|
|
|
|
int interleaved_buffer_size = 0;
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand cmd;
|
2008-10-17 22:27:33 +02:00
|
|
|
do {
|
2010-01-18 10:59:11 +01:00
|
|
|
AVPacket packet;
|
2008-11-04 16:55:11 +01:00
|
|
|
if (av_read_frame(format_context, &packet) < 0)
|
2008-10-30 19:03:41 +01:00
|
|
|
/* end of file */
|
|
|
|
break;
|
|
|
|
|
2010-01-18 10:59:11 +01:00
|
|
|
if (packet.stream_index == audio_stream)
|
|
|
|
cmd = ffmpeg_send_packet(decoder, input,
|
2008-11-04 16:55:11 +01:00
|
|
|
&packet, codec_context,
|
2013-03-22 07:05:00 +01:00
|
|
|
&av_stream->time_base,
|
2013-08-07 15:04:26 +02:00
|
|
|
frame,
|
|
|
|
&interleaved_buffer, &interleaved_buffer_size);
|
2008-10-30 19:03:41 +01:00
|
|
|
else
|
|
|
|
cmd = decoder_get_command(decoder);
|
|
|
|
|
|
|
|
av_free_packet(&packet);
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
if (cmd == DecoderCommand::SEEK) {
|
2009-02-03 22:46:00 +01:00
|
|
|
int64_t where =
|
2011-09-15 21:12:53 +02:00
|
|
|
time_to_ffmpeg(decoder_seek_where(decoder),
|
|
|
|
av_stream->time_base);
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2011-09-15 21:12:53 +02:00
|
|
|
if (av_seek_frame(format_context, audio_stream, where,
|
2011-09-15 21:32:29 +02:00
|
|
|
AV_TIME_BASE) < 0)
|
2008-10-30 19:02:38 +01:00
|
|
|
decoder_seek_error(decoder);
|
2011-09-15 21:41:25 +02:00
|
|
|
else {
|
|
|
|
avcodec_flush_buffers(codec_context);
|
2008-10-30 19:02:38 +01:00
|
|
|
decoder_command_finished(decoder);
|
2011-09-15 21:41:25 +02:00
|
|
|
}
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
2013-09-27 12:11:37 +02:00
|
|
|
} while (cmd != DecoderCommand::STOP);
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2013-03-22 07:05:00 +01:00
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54, 28, 0)
|
|
|
|
avcodec_free_frame(&frame);
|
|
|
|
#else
|
|
|
|
av_freep(&frame);
|
|
|
|
#endif
|
2013-08-07 15:04:26 +02:00
|
|
|
av_freep(&interleaved_buffer);
|
2013-03-22 07:05:00 +01:00
|
|
|
|
2010-01-18 10:59:11 +01:00
|
|
|
avcodec_close(codec_context);
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&format_context);
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
|
|
|
|
2010-01-18 10:57:57 +01:00
|
|
|
//no tag reading in ffmpeg, check if playable
|
2012-02-11 19:12:02 +01:00
|
|
|
static bool
|
|
|
|
ffmpeg_scan_stream(struct input_stream *is,
|
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2008-10-17 22:27:33 +02:00
|
|
|
{
|
2010-06-30 20:32:29 +02:00
|
|
|
AVInputFormat *input_format = ffmpeg_probe(NULL, is);
|
|
|
|
if (input_format == NULL)
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2010-06-30 20:32:29 +02:00
|
|
|
|
2013-08-05 00:09:02 +02:00
|
|
|
AvioStream stream(nullptr, is);
|
|
|
|
if (!stream.Open())
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2010-01-18 10:57:57 +01:00
|
|
|
|
2011-07-03 14:54:56 +02:00
|
|
|
AVFormatContext *f = NULL;
|
2013-08-05 00:09:02 +02:00
|
|
|
if (mpd_ffmpeg_open_input(&f, stream.io, is->uri.c_str(),
|
|
|
|
input_format) != 0)
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2010-01-18 10:57:57 +01:00
|
|
|
|
2012-01-05 00:02:46 +01:00
|
|
|
const int find_result =
|
|
|
|
avformat_find_stream_info(f, NULL);
|
|
|
|
if (find_result < 0) {
|
|
|
|
avformat_close_input(&f);
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2010-01-18 10:57:57 +01:00
|
|
|
}
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
if (f->duration != (int64_t)AV_NOPTS_VALUE)
|
|
|
|
tag_handler_invoke_duration(handler, handler_ctx,
|
|
|
|
f->duration / AV_TIME_BASE);
|
2009-03-03 18:58:54 +01:00
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
ffmpeg_scan_dictionary(f->metadata, handler, handler_ctx);
|
2012-02-03 09:00:19 +01:00
|
|
|
int idx = ffmpeg_find_audio_stream(f);
|
|
|
|
if (idx >= 0)
|
2012-02-11 19:12:02 +01:00
|
|
|
ffmpeg_scan_dictionary(f->streams[idx]->metadata,
|
|
|
|
handler, handler_ctx);
|
2008-10-17 22:27:33 +02:00
|
|
|
|
2012-01-05 00:02:46 +01:00
|
|
|
avformat_close_input(&f);
|
2012-02-11 19:12:02 +01:00
|
|
|
return true;
|
2008-10-17 22:27:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-02-23 19:48:43 +01:00
|
|
|
* A list of extensions found for the formats supported by ffmpeg.
|
|
|
|
* This list is current as of 02-23-09; To find out if there are more
|
|
|
|
* supported formats, check the ffmpeg changelog since this date for
|
|
|
|
* more formats.
|
2008-10-17 22:27:33 +02:00
|
|
|
*/
|
2008-11-04 16:55:11 +01:00
|
|
|
static const char *const ffmpeg_suffixes[] = {
|
2009-02-23 19:48:43 +01:00
|
|
|
"16sv", "3g2", "3gp", "4xm", "8svx", "aa3", "aac", "ac3", "afc", "aif",
|
|
|
|
"aifc", "aiff", "al", "alaw", "amr", "anim", "apc", "ape", "asf",
|
|
|
|
"atrac", "au", "aud", "avi", "avm2", "avs", "bap", "bfi", "c93", "cak",
|
|
|
|
"cin", "cmv", "cpk", "daud", "dct", "divx", "dts", "dv", "dvd", "dxa",
|
|
|
|
"eac3", "film", "flac", "flc", "fli", "fll", "flx", "flv", "g726",
|
2010-11-05 02:01:35 +01:00
|
|
|
"gsm", "gxf", "iss", "m1v", "m2v", "m2t", "m2ts",
|
|
|
|
"m4a", "m4b", "m4v",
|
|
|
|
"mad",
|
2009-02-23 19:48:43 +01:00
|
|
|
"mj2", "mjpeg", "mjpg", "mka", "mkv", "mlp", "mm", "mmf", "mov", "mp+",
|
|
|
|
"mp1", "mp2", "mp3", "mp4", "mpc", "mpeg", "mpg", "mpga", "mpp", "mpu",
|
|
|
|
"mve", "mvi", "mxf", "nc", "nsv", "nut", "nuv", "oga", "ogm", "ogv",
|
|
|
|
"ogx", "oma", "ogg", "omg", "psp", "pva", "qcp", "qt", "r3d", "ra",
|
|
|
|
"ram", "rl2", "rm", "rmvb", "roq", "rpl", "rvc", "shn", "smk", "snd",
|
|
|
|
"sol", "son", "spx", "str", "swf", "tgi", "tgq", "tgv", "thp", "ts",
|
|
|
|
"tsp", "tta", "xa", "xvid", "uv", "uv2", "vb", "vid", "vob", "voc",
|
2012-05-22 23:36:47 +02:00
|
|
|
"vp6", "vmd", "wav", "webm", "wma", "wmv", "wsaud", "wsvga", "wv",
|
|
|
|
"wve",
|
2008-10-17 22:27:33 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2008-11-04 16:55:11 +01:00
|
|
|
static const char *const ffmpeg_mime_types[] = {
|
2013-07-02 22:16:46 +02:00
|
|
|
"application/flv",
|
2010-01-17 16:00:14 +01:00
|
|
|
"application/m4a",
|
2009-02-23 19:48:43 +01:00
|
|
|
"application/mp4",
|
|
|
|
"application/octet-stream",
|
|
|
|
"application/ogg",
|
|
|
|
"application/x-ms-wmz",
|
|
|
|
"application/x-ms-wmd",
|
2009-12-29 22:33:46 +01:00
|
|
|
"application/x-ogg",
|
2009-02-23 19:48:43 +01:00
|
|
|
"application/x-shockwave-flash",
|
|
|
|
"application/x-shorten",
|
|
|
|
"audio/8svx",
|
|
|
|
"audio/16sv",
|
|
|
|
"audio/aac",
|
|
|
|
"audio/ac3",
|
2010-01-17 16:00:14 +01:00
|
|
|
"audio/aiff"
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/amr",
|
|
|
|
"audio/basic",
|
|
|
|
"audio/flac",
|
2010-01-17 16:00:14 +01:00
|
|
|
"audio/m4a",
|
|
|
|
"audio/mp4",
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/mpeg",
|
|
|
|
"audio/musepack",
|
|
|
|
"audio/ogg",
|
|
|
|
"audio/qcelp",
|
|
|
|
"audio/vorbis",
|
2009-12-29 22:33:46 +01:00
|
|
|
"audio/vorbis+ogg",
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/x-8svx",
|
|
|
|
"audio/x-16sv",
|
|
|
|
"audio/x-aac",
|
|
|
|
"audio/x-ac3",
|
|
|
|
"audio/x-aiff"
|
|
|
|
"audio/x-alaw",
|
|
|
|
"audio/x-au",
|
|
|
|
"audio/x-dca",
|
|
|
|
"audio/x-eac3",
|
|
|
|
"audio/x-flac",
|
|
|
|
"audio/x-gsm",
|
|
|
|
"audio/x-mace",
|
2010-01-17 16:00:14 +01:00
|
|
|
"audio/x-matroska",
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/x-monkeys-audio",
|
|
|
|
"audio/x-mpeg",
|
2008-10-17 22:27:33 +02:00
|
|
|
"audio/x-ms-wma",
|
|
|
|
"audio/x-ms-wax",
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/x-musepack",
|
2009-12-29 22:33:46 +01:00
|
|
|
"audio/x-ogg",
|
|
|
|
"audio/x-vorbis",
|
|
|
|
"audio/x-vorbis+ogg",
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/x-pn-realaudio",
|
|
|
|
"audio/x-pn-multirate-realaudio",
|
|
|
|
"audio/x-speex",
|
|
|
|
"audio/x-tta"
|
2010-01-17 16:00:14 +01:00
|
|
|
"audio/x-voc",
|
2009-02-23 19:48:43 +01:00
|
|
|
"audio/x-wav",
|
|
|
|
"audio/x-wma",
|
|
|
|
"audio/x-wv",
|
|
|
|
"video/anim",
|
|
|
|
"video/quicktime",
|
|
|
|
"video/msvideo",
|
|
|
|
"video/ogg",
|
|
|
|
"video/theora",
|
2012-05-22 23:36:47 +02:00
|
|
|
"video/webm",
|
2009-02-23 19:48:43 +01:00
|
|
|
"video/x-dv",
|
|
|
|
"video/x-flv",
|
|
|
|
"video/x-matroska",
|
|
|
|
"video/x-mjpeg",
|
|
|
|
"video/x-mpeg",
|
|
|
|
"video/x-ms-asf",
|
|
|
|
"video/x-msvideo",
|
2008-10-17 22:27:33 +02:00
|
|
|
"video/x-ms-wmv",
|
|
|
|
"video/x-ms-wvx",
|
|
|
|
"video/x-ms-wm",
|
|
|
|
"video/x-ms-wmx",
|
2009-02-23 19:48:43 +01:00
|
|
|
"video/x-nut",
|
|
|
|
"video/x-pva",
|
|
|
|
"video/x-theora",
|
|
|
|
"video/x-vid",
|
|
|
|
"video/x-wmv",
|
|
|
|
"video/x-xvid",
|
2010-05-18 20:48:52 +02:00
|
|
|
|
|
|
|
/* special value for the "ffmpeg" input plugin: all streams by
|
|
|
|
the "ffmpeg" input plugin shall be decoded by this
|
|
|
|
plugin */
|
|
|
|
"audio/x-mpd-ffmpeg",
|
|
|
|
|
2008-10-17 22:27:33 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-04-03 00:52:13 +02:00
|
|
|
const struct decoder_plugin ffmpeg_decoder_plugin = {
|
2013-01-26 00:37:04 +01:00
|
|
|
"ffmpeg",
|
|
|
|
ffmpeg_init,
|
|
|
|
nullptr,
|
|
|
|
ffmpeg_decode,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
ffmpeg_scan_stream,
|
|
|
|
nullptr,
|
|
|
|
ffmpeg_suffixes,
|
|
|
|
ffmpeg_mime_types
|
2008-10-17 22:27:33 +02:00
|
|
|
};
|