mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
a3a8b70762
Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * docs/plugins/gst-plugins-good-plugins.args: * docs/plugins/gst-plugins-good-plugins.hierarchy: * docs/plugins/gst-plugins-good-plugins.interfaces: * docs/plugins/gst-plugins-good-plugins.prerequisites: * docs/plugins/inspect/plugin-aasink.xml: * docs/plugins/inspect/plugin-alaw.xml: * docs/plugins/inspect/plugin-alpha.xml: * docs/plugins/inspect/plugin-alphacolor.xml: * docs/plugins/inspect/plugin-annodex.xml: * docs/plugins/inspect/plugin-apetag.xml: * docs/plugins/inspect/plugin-audiofx.xml: * docs/plugins/inspect/plugin-auparse.xml: * docs/plugins/inspect/plugin-autodetect.xml: * docs/plugins/inspect/plugin-avi.xml: * docs/plugins/inspect/plugin-cacasink.xml: * docs/plugins/inspect/plugin-cairo.xml: * docs/plugins/inspect/plugin-cdio.xml: * docs/plugins/inspect/plugin-cutter.xml: * docs/plugins/inspect/plugin-debug.xml: * docs/plugins/inspect/plugin-dv.xml: * docs/plugins/inspect/plugin-efence.xml: * docs/plugins/inspect/plugin-effectv.xml: * docs/plugins/inspect/plugin-equalizer.xml: * docs/plugins/inspect/plugin-esdsink.xml: * docs/plugins/inspect/plugin-flac.xml: * docs/plugins/inspect/plugin-flxdec.xml: * docs/plugins/inspect/plugin-gamma.xml: * docs/plugins/inspect/plugin-gconfelements.xml: * docs/plugins/inspect/plugin-gdkpixbuf.xml: * docs/plugins/inspect/plugin-goom.xml: * docs/plugins/inspect/plugin-goom2k1.xml: * docs/plugins/inspect/plugin-halelements.xml: * docs/plugins/inspect/plugin-icydemux.xml: * docs/plugins/inspect/plugin-id3demux.xml: * docs/plugins/inspect/plugin-jpeg.xml: * docs/plugins/inspect/plugin-level.xml: * docs/plugins/inspect/plugin-matroska.xml: * docs/plugins/inspect/plugin-monoscope.xml: * docs/plugins/inspect/plugin-mulaw.xml: * docs/plugins/inspect/plugin-multifile.xml: * docs/plugins/inspect/plugin-multipart.xml: * docs/plugins/inspect/plugin-navigationtest.xml: * docs/plugins/inspect/plugin-ossaudio.xml: * docs/plugins/inspect/plugin-png.xml: * docs/plugins/inspect/plugin-quicktime.xml: * docs/plugins/inspect/plugin-rtp.xml: * docs/plugins/inspect/plugin-rtsp.xml: * docs/plugins/inspect/plugin-smpte.xml: * docs/plugins/inspect/plugin-soup.xml: * docs/plugins/inspect/plugin-spectrum.xml: * docs/plugins/inspect/plugin-speex.xml: * docs/plugins/inspect/plugin-taglib.xml: * docs/plugins/inspect/plugin-udp.xml: * docs/plugins/inspect/plugin-video4linux2.xml: * docs/plugins/inspect/plugin-videobalance.xml: * docs/plugins/inspect/plugin-videobox.xml: * docs/plugins/inspect/plugin-videocrop.xml: * docs/plugins/inspect/plugin-videoflip.xml: * docs/plugins/inspect/plugin-videomixer.xml: * docs/plugins/inspect/plugin-wavenc.xml: * docs/plugins/inspect/plugin-wavpack.xml: * docs/plugins/inspect/plugin-wavparse.xml: * docs/plugins/inspect/plugin-ximagesrc.xml: * gst/debug/Makefile.am: * gst/debug/breakmydata.c: * gst/debug/efence.c: * gst/debug/gstdebug.c: * gst/debug/gstnavseek.c: * gst/debug/gstpushfilesrc.c: * gst/debug/gstpushfilesrc.h: * gst/debug/negotiation.c: * gst/debug/progressreport.c: * gst/debug/progressreport.h: * gst/debug/rndbuffersize.c: * gst/debug/testplugin.c: Remove dummy plugin_init. Remove some undefined entries from doc- section file. Add taginject element and rebuild docs for it.
198 lines
5.7 KiB
C
198 lines
5.7 KiB
C
/* GStreamer Push File Source
|
|
* Copyright (C) <2007> Tim-Philipp Müller <tim centricular net>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:element-pushfilesrc
|
|
* @short_description: Works like a filesrc, but only push-based (for debugging)
|
|
* @see_also: filesrc
|
|
*
|
|
* <refsect2>
|
|
* <para>
|
|
* This element is only useful for debugging purposes. It implements an URI
|
|
* protocol handler for the 'pushfile' protocol and behaves like a file source
|
|
* element that cannot be activated in pull-mode. This makes it very easy to
|
|
* debug demuxers or decoders that can operate both pull and push-based in
|
|
* connection with the playbin element (which creates a source based on the
|
|
* URI passed).
|
|
* </para>
|
|
* <title>Example launch line</title>
|
|
* <para>
|
|
* <programlisting>
|
|
* gst-launch -m playbin uri=pushfile:///home/you/some/file.ogg
|
|
* </programlisting>
|
|
* This plays back the given file using playbin, with the demuxer operating
|
|
* push-based.
|
|
* </para>
|
|
* </refsect2>
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "gstpushfilesrc.h"
|
|
|
|
#include <gst/gst.h>
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (pushfilesrc_debug);
|
|
#define GST_CAT_DEFAULT pushfilesrc_debug
|
|
|
|
static const GstElementDetails pushfilesrc_details =
|
|
GST_ELEMENT_DETAILS ("Push File Source",
|
|
"Testing",
|
|
"Implements pushfile:// URI-handler for push-based file access",
|
|
"Tim-Philipp Müller <tim centricular net>");
|
|
|
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
GST_PAD_SRC,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
static void gst_push_file_src_uri_handler_init (gpointer g_iface,
|
|
gpointer iface_data);
|
|
static void gst_file_push_src_add_uri_handler (GType type);
|
|
|
|
GST_BOILERPLATE_FULL (GstPushFileSrc, gst_push_file_src, GstBin, GST_TYPE_BIN,
|
|
gst_file_push_src_add_uri_handler);
|
|
|
|
static void
|
|
gst_file_push_src_add_uri_handler (GType type)
|
|
{
|
|
static const GInterfaceInfo info = {
|
|
gst_push_file_src_uri_handler_init,
|
|
NULL,
|
|
NULL
|
|
};
|
|
|
|
g_type_add_interface_static (type, GST_TYPE_URI_HANDLER, &info);
|
|
GST_DEBUG_CATEGORY_INIT (pushfilesrc_debug, "pushfilesrc", 0,
|
|
"pushfilesrc element");
|
|
}
|
|
|
|
static void
|
|
gst_push_file_src_base_init (gpointer g_class)
|
|
{
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
gst_static_pad_template_get (&srctemplate));
|
|
|
|
gst_element_class_set_details (element_class, &pushfilesrc_details);
|
|
}
|
|
|
|
static void
|
|
gst_push_file_src_dispose (GObject * obj)
|
|
{
|
|
GstPushFileSrc *src = GST_PUSH_FILE_SRC (obj);
|
|
|
|
if (src->srcpad) {
|
|
gst_element_remove_pad (GST_ELEMENT (src), src->srcpad);
|
|
src->srcpad = NULL;
|
|
}
|
|
if (src->filesrc) {
|
|
gst_bin_remove (GST_BIN (src), src->filesrc);
|
|
src->filesrc = NULL;
|
|
}
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (obj);
|
|
}
|
|
|
|
static void
|
|
gst_push_file_src_class_init (GstPushFileSrcClass * g_class)
|
|
{
|
|
GObjectClass *gobject_class;
|
|
|
|
gobject_class = G_OBJECT_CLASS (g_class);
|
|
|
|
gobject_class->dispose = gst_push_file_src_dispose;
|
|
}
|
|
|
|
static gboolean
|
|
gst_push_file_src_ghostpad_checkgetrange (GstPad * pad)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gst_push_file_src_init (GstPushFileSrc * src, GstPushFileSrcClass * g_class)
|
|
{
|
|
src->filesrc = gst_element_factory_make ("filesrc", "real-filesrc");
|
|
if (src->filesrc) {
|
|
GstPad *pad;
|
|
|
|
gst_bin_add (GST_BIN (src), src->filesrc);
|
|
pad = gst_element_get_static_pad (src->filesrc, "src");
|
|
g_assert (pad != NULL);
|
|
src->srcpad = gst_ghost_pad_new ("src", pad);
|
|
/* FIXME^H^HCORE: try pushfile:///foo/bar.ext ! typefind ! fakesink without
|
|
* this and watch core bugginess (some pad stays in flushing state) */
|
|
gst_pad_set_checkgetrange_function (src->srcpad,
|
|
GST_DEBUG_FUNCPTR (gst_push_file_src_ghostpad_checkgetrange));
|
|
gst_element_add_pad (GST_ELEMENT (src), src->srcpad);
|
|
gst_object_unref (pad);
|
|
}
|
|
}
|
|
|
|
/*** GSTURIHANDLER INTERFACE *************************************************/
|
|
|
|
static GstURIType
|
|
gst_push_file_src_uri_get_type (void)
|
|
{
|
|
return GST_URI_SRC;
|
|
}
|
|
static gchar **
|
|
gst_push_file_src_uri_get_protocols (void)
|
|
{
|
|
static gchar *protocols[] = { "pushfile", NULL };
|
|
|
|
return protocols;
|
|
}
|
|
static const gchar *
|
|
gst_push_file_src_uri_get_uri (GstURIHandler * handler)
|
|
{
|
|
GstPushFileSrc *src = GST_PUSH_FILE_SRC (handler);
|
|
|
|
if (src->filesrc == NULL)
|
|
return NULL;
|
|
|
|
return gst_uri_handler_get_uri (GST_URI_HANDLER (src->filesrc));
|
|
}
|
|
|
|
static gboolean
|
|
gst_push_file_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
|
|
{
|
|
GstPushFileSrc *src = GST_PUSH_FILE_SRC (handler);
|
|
|
|
if (src->filesrc == NULL || !g_str_has_prefix (uri, "pushfile://"))
|
|
return FALSE;
|
|
|
|
/* skip 'push' bit */
|
|
return gst_uri_handler_set_uri (GST_URI_HANDLER (src->filesrc), uri + 4);
|
|
}
|
|
|
|
static void
|
|
gst_push_file_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
|
|
{
|
|
GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
|
|
|
|
iface->get_type = gst_push_file_src_uri_get_type;
|
|
iface->get_protocols = gst_push_file_src_uri_get_protocols;
|
|
iface->get_uri = gst_push_file_src_uri_get_uri;
|
|
iface->set_uri = gst_push_file_src_uri_set_uri;
|
|
}
|