From 84c6815cf7dc6ecf427a508b3ca5e562440e40c3 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Mon, 12 Feb 2007 10:29:57 +0000 Subject: gst/debug/: Add code for a pushfilesrc element that implements a pushfile:// URI handler, to make debugging push-mode... Original commit message from CVS: * gst/debug/Makefile.am: * gst/debug/gstdebug.c: (plugin_init): * gst/debug/gstpushfilesrc.c: * gst/debug/gstpushfilesrc.h: Add code for a pushfilesrc element that implements a pushfile:// URI handler, to make debugging push-mode operation of demuxer/decoders that support both easier in connection with seek/playbin/etc. The element isn't registered at the moment. --- gst/debug/gstdebug.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gst/debug/gstdebug.c') diff --git a/gst/debug/gstdebug.c b/gst/debug/gstdebug.c index 958d472d..c396befc 100644 --- a/gst/debug/gstdebug.c +++ b/gst/debug/gstdebug.c @@ -27,6 +27,7 @@ gboolean gst_progress_report_plugin_init (GstPlugin * plugin); gboolean gst_navseek_plugin_init (GstPlugin * plugin); gboolean gst_test_plugin_init (GstPlugin * plugin); gboolean gst_break_my_data_plugin_init (GstPlugin * plugin); +gboolean gst_push_file_src_plugin_init (GstPlugin * plugin); /* gboolean gst_negotiation_plugin_init (GstPlugin * plugin); */ @@ -35,6 +36,7 @@ plugin_init (GstPlugin * plugin) { if (!gst_break_my_data_plugin_init (plugin) || !gst_navseek_plugin_init (plugin) || +/* !gst_push_file_src_plugin_init (plugin) || */ /* !gst_negotiation_plugin_init (plugin) || */ !gst_progress_report_plugin_init (plugin) || !gst_test_plugin_init (plugin)) -- cgit