2005-08-05 12:59:46 +00:00
|
|
|
/* GStreamer
|
2005-08-02 21:35:34 +00:00
|
|
|
*
|
2005-08-05 12:59:46 +00:00
|
|
|
* Copyright (C) <2005> Stefan Kost <ensonic at users dot sf dot net>
|
|
|
|
*
|
|
|
|
* lib.c: controller subsystem init
|
|
|
|
*
|
|
|
|
* 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.
|
2005-08-02 21:35:34 +00:00
|
|
|
*/
|
|
|
|
|
2005-12-01 09:23:20 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2005-08-02 21:35:34 +00:00
|
|
|
#include <gst/gst.h>
|
2008-05-03 15:25:25 +00:00
|
|
|
#include <gst/controller/gstcontroller.h>
|
2005-08-02 21:35:34 +00:00
|
|
|
|
|
|
|
/* library initialisation */
|
|
|
|
|
Makefile.am: Add check-exports target and run it as part of 'make check' (see #499140 and #493983).
Original commit message from CVS:
* Makefile.am:
Add check-exports target and run it as part of 'make check'
(see #499140 and #493983).
* gst/gst_private.h:
* gst/gstelementfactory.h:
* gst/gstghostpad.c: (gst_proxy_pad_class_init):
* gst/gstinfo.c: (_priv_gst_in_valgrind), (_gst_debug_init),
(_priv_gst_in_valgrind):
* gst/gstinfo.h: (GstLogFunction):
* gst/gsttypefind.c: (type_find_debug), (GST_CAT_DEFAULT),
(gst_type_find_register):
* gst/gsttypefindfactory.c: (type_find_debug), (GST_CAT_DEFAULT),
(gst_type_find_factory_get_type):
* libs/gst/controller/gstcontroller.c: (GST_CAT_DEFAULT),
(GST_CAT_DEFAULT), (parent_class), (priv_gst_controller_key),
(gst_controller_new_valist), (gst_controller_new_list),
(_gst_controller_dispose), (_gst_controller_class_init):
* libs/gst/controller/gstcontrolsource.c: (GST_CAT_DEFAULT):
* libs/gst/controller/gsthelper.c: (GST_CAT_DEFAULT),
(GST_CAT_DEFAULT), (gst_object_uncontrol_properties),
(gst_object_get_controller), (gst_object_set_controller),
(gst_object_suggest_next_sync), (gst_object_sync_values),
(gst_object_set_control_source), (gst_object_get_control_source),
(gst_object_get_value_arrays), (gst_object_get_value_array),
(gst_object_get_control_rate), (gst_object_set_control_rate):
* libs/gst/controller/gstinterpolation.c: (GST_CAT_DEFAULT):
* libs/gst/controller/lib.c: (GST_CAT_DEFAULT):
Make some functions that should be static static; rename some
private symbols so that they don't get exported; add some FIXME
comments so we can move accidentally exported functions into
our private section in 0.11.
* win32/common/libgstreamer.def:
Add gst_utils_get_timestamp().
2007-12-12 23:20:00 +00:00
|
|
|
#define GST_CAT_DEFAULT controller_debug
|
2005-08-02 21:35:34 +00:00
|
|
|
GST_DEBUG_CATEGORY (GST_CAT_DEFAULT);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_controller_init:
|
|
|
|
* @argc: pointer to the commandline argument count
|
|
|
|
* @argv: pointer to the commandline argument values
|
|
|
|
*
|
|
|
|
* Initializes the use of the controller library. Suggested to be called right
|
|
|
|
* after gst_init().
|
|
|
|
*
|
|
|
|
* Returns: the %TRUE for success.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_controller_init (int *argc, char ***argv)
|
|
|
|
{
|
2006-01-31 16:56:28 +00:00
|
|
|
static gboolean _gst_controller_initialized = FALSE;
|
|
|
|
|
|
|
|
if (_gst_controller_initialized)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
_gst_controller_initialized = TRUE;
|
|
|
|
|
2005-08-02 21:35:34 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "gstcontroller", 0,
|
|
|
|
"dynamic parameter control for gstreamer elements");
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|