2010-05-18 20:48:52 +02:00
|
|
|
/*
|
2013-01-21 17:38:40 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2010-05-18 20:48:52 +02:00
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2013-01-21 17:38:40 +01:00
|
|
|
/* necessary because libavutil/common.h uses UINT64_C */
|
|
|
|
#define __STDC_CONSTANT_MACROS
|
|
|
|
|
2010-05-18 20:48:52 +02:00
|
|
|
#include "config.h"
|
2013-01-21 17:38:40 +01:00
|
|
|
#include "FfmpegInputPlugin.hxx"
|
2013-01-25 22:43:01 +01:00
|
|
|
#include "InputInternal.hxx"
|
2013-01-24 19:14:40 +01:00
|
|
|
#include "InputStream.hxx"
|
2013-01-25 22:43:01 +01:00
|
|
|
#include "InputPlugin.hxx"
|
2010-05-18 20:48:52 +02:00
|
|
|
|
2013-01-21 17:38:40 +01:00
|
|
|
extern "C" {
|
2012-08-14 18:47:08 +02:00
|
|
|
#include <libavutil/avutil.h>
|
2010-05-18 20:48:52 +02:00
|
|
|
#include <libavformat/avio.h>
|
|
|
|
#include <libavformat/avformat.h>
|
2013-01-21 17:38:40 +01:00
|
|
|
}
|
2010-05-18 20:48:52 +02:00
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "input_ffmpeg"
|
|
|
|
|
2013-01-28 21:45:44 +01:00
|
|
|
struct FfmpegInputStream {
|
2010-05-18 20:48:52 +02:00
|
|
|
struct input_stream base;
|
|
|
|
|
2011-05-09 18:22:59 +02:00
|
|
|
AVIOContext *h;
|
2010-05-18 20:48:52 +02:00
|
|
|
|
|
|
|
bool eof;
|
2013-01-28 21:46:38 +01:00
|
|
|
|
|
|
|
FfmpegInputStream(const char *uri, Mutex &mutex, Cond &cond,
|
|
|
|
AVIOContext *_h)
|
2013-01-28 20:32:23 +01:00
|
|
|
:base(input_plugin_ffmpeg, uri, mutex, cond),
|
|
|
|
h(_h), eof(false) {
|
2013-01-28 21:46:38 +01:00
|
|
|
base.ready = true;
|
|
|
|
base.seekable = (h->seekable & AVIO_SEEKABLE_NORMAL) != 0;
|
|
|
|
base.size = avio_size(h);
|
|
|
|
|
|
|
|
/* hack to make MPD select the "ffmpeg" decoder plugin
|
|
|
|
- since avio.h doesn't tell us the MIME type of the
|
|
|
|
resource, we can't select a decoder plugin, but the
|
|
|
|
"ffmpeg" plugin is quite good at auto-detection */
|
|
|
|
base.mime = g_strdup("audio/x-mpd-ffmpeg");
|
|
|
|
}
|
|
|
|
|
|
|
|
~FfmpegInputStream() {
|
|
|
|
avio_close(h);
|
|
|
|
}
|
2010-05-18 20:48:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline GQuark
|
|
|
|
ffmpeg_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("ffmpeg");
|
|
|
|
}
|
|
|
|
|
2011-05-09 18:22:59 +02:00
|
|
|
static inline bool
|
|
|
|
input_ffmpeg_supported(void)
|
|
|
|
{
|
2013-01-21 17:38:40 +01:00
|
|
|
void *opaque = nullptr;
|
|
|
|
return avio_enum_protocols(&opaque, 0) != nullptr;
|
2011-05-09 18:22:59 +02:00
|
|
|
}
|
|
|
|
|
2010-05-18 20:48:52 +02:00
|
|
|
static bool
|
|
|
|
input_ffmpeg_init(G_GNUC_UNUSED const struct config_param *param,
|
|
|
|
G_GNUC_UNUSED GError **error_r)
|
|
|
|
{
|
|
|
|
av_register_all();
|
|
|
|
|
|
|
|
/* disable this plugin if there's no registered protocol */
|
2011-05-09 18:22:59 +02:00
|
|
|
if (!input_ffmpeg_supported()) {
|
2010-05-18 20:48:52 +02:00
|
|
|
g_set_error(error_r, ffmpeg_quark(), 0,
|
|
|
|
"No protocol");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct input_stream *
|
2011-09-14 21:46:41 +02:00
|
|
|
input_ffmpeg_open(const char *uri,
|
2013-01-27 17:20:50 +01:00
|
|
|
Mutex &mutex, Cond &cond,
|
2011-09-14 21:46:41 +02:00
|
|
|
GError **error_r)
|
2010-05-18 20:48:52 +02:00
|
|
|
{
|
|
|
|
if (!g_str_has_prefix(uri, "gopher://") &&
|
|
|
|
!g_str_has_prefix(uri, "rtp://") &&
|
|
|
|
!g_str_has_prefix(uri, "rtsp://") &&
|
|
|
|
!g_str_has_prefix(uri, "rtmp://") &&
|
|
|
|
!g_str_has_prefix(uri, "rtmpt://") &&
|
|
|
|
!g_str_has_prefix(uri, "rtmps://"))
|
2013-01-21 17:38:40 +01:00
|
|
|
return nullptr;
|
2010-05-18 20:48:52 +02:00
|
|
|
|
2013-01-28 21:46:38 +01:00
|
|
|
AVIOContext *h;
|
|
|
|
int ret = avio_open(&h, uri, AVIO_FLAG_READ);
|
2010-05-18 20:48:52 +02:00
|
|
|
if (ret != 0) {
|
|
|
|
g_set_error(error_r, ffmpeg_quark(), ret,
|
|
|
|
"libavformat failed to open the URI");
|
2013-01-21 17:38:40 +01:00
|
|
|
return nullptr;
|
2010-05-18 20:48:52 +02:00
|
|
|
}
|
|
|
|
|
2013-01-28 21:46:38 +01:00
|
|
|
auto *i = new FfmpegInputStream(uri, mutex, cond, h);
|
2010-05-18 20:48:52 +02:00
|
|
|
return &i->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
input_ffmpeg_read(struct input_stream *is, void *ptr, size_t size,
|
|
|
|
GError **error_r)
|
|
|
|
{
|
2013-01-28 21:45:44 +01:00
|
|
|
FfmpegInputStream *i = (FfmpegInputStream *)is;
|
2010-05-18 20:48:52 +02:00
|
|
|
|
2013-01-21 17:38:40 +01:00
|
|
|
int ret = avio_read(i->h, (unsigned char *)ptr, size);
|
2010-05-18 20:48:52 +02:00
|
|
|
if (ret <= 0) {
|
|
|
|
if (ret < 0)
|
|
|
|
g_set_error(error_r, ffmpeg_quark(), 0,
|
|
|
|
"url_read() failed");
|
|
|
|
|
|
|
|
i->eof = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
is->offset += ret;
|
|
|
|
return (size_t)ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_ffmpeg_close(struct input_stream *is)
|
|
|
|
{
|
2013-01-28 21:45:44 +01:00
|
|
|
FfmpegInputStream *i = (FfmpegInputStream *)is;
|
2010-05-18 20:48:52 +02:00
|
|
|
|
2013-01-28 21:46:38 +01:00
|
|
|
delete i;
|
2010-05-18 20:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
input_ffmpeg_eof(struct input_stream *is)
|
|
|
|
{
|
2013-01-28 21:45:44 +01:00
|
|
|
FfmpegInputStream *i = (FfmpegInputStream *)is;
|
2010-05-18 20:48:52 +02:00
|
|
|
|
|
|
|
return i->eof;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
input_ffmpeg_seek(struct input_stream *is, goffset offset, int whence,
|
|
|
|
G_GNUC_UNUSED GError **error_r)
|
|
|
|
{
|
2013-01-28 21:45:44 +01:00
|
|
|
FfmpegInputStream *i = (FfmpegInputStream *)is;
|
2011-05-09 18:22:59 +02:00
|
|
|
int64_t ret = avio_seek(i->h, offset, whence);
|
2010-05-18 20:48:52 +02:00
|
|
|
|
|
|
|
if (ret >= 0) {
|
|
|
|
i->eof = false;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
g_set_error(error_r, ffmpeg_quark(), 0, "url_seek() failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct input_plugin input_plugin_ffmpeg = {
|
2013-01-21 17:38:40 +01:00
|
|
|
"ffmpeg",
|
|
|
|
input_ffmpeg_init,
|
|
|
|
nullptr,
|
|
|
|
input_ffmpeg_open,
|
|
|
|
input_ffmpeg_close,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
input_ffmpeg_read,
|
|
|
|
input_ffmpeg_eof,
|
|
|
|
input_ffmpeg_seek,
|
2010-05-18 20:48:52 +02:00
|
|
|
};
|