2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gst_private.h: Private header for within libgst
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_PRIVATE_H__
|
|
|
|
#define __GST_PRIVATE_H__
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2003-06-29 14:05:49 +00:00
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2001-01-14 21:55:41 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
/* This needs to be before glib.h, since it might be used in inline
|
|
|
|
* functions */
|
2005-12-16 21:59:12 +00:00
|
|
|
extern const char g_log_domain_gstreamer[];
|
2004-05-07 02:36:28 +00:00
|
|
|
|
2004-04-05 21:42:07 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2000-12-30 02:41:15 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
/* Needed for GstRegistry * */
|
|
|
|
#include "gstregistry.h"
|
|
|
|
|
2005-11-20 17:12:49 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2004-04-05 21:42:07 +00:00
|
|
|
gboolean __gst_in_valgrind (void);
|
|
|
|
|
Add internal helpers for pre-registering quarks from static strings and using the quark values directly instead of lo...
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gst.c: (init_post):
* gst/gst_private.h:
* gst/gstquark.c: (_priv_gst_quarks_initialize):
* gst/gstquark.h:
* gst/gstquery.c: (gst_query_new_position),
(gst_query_set_position), (gst_query_parse_position),
(gst_query_new_duration), (gst_query_set_duration),
(gst_query_parse_duration), (gst_query_new_convert),
(gst_query_set_convert), (gst_query_parse_convert),
(gst_query_new_segment), (gst_query_set_segment),
(gst_query_parse_segment), (gst_query_new_seeking),
(gst_query_set_seeking), (gst_query_parse_seeking):
Add internal helpers for pre-registering quarks from static strings
and using the quark values directly instead of looking them up when
creating and parsing queries. Can be used for event construction too.
Closes #350432.
2006-08-16 11:47:54 +00:00
|
|
|
/* Initialize GStreamer private quark storage */
|
|
|
|
void _priv_gst_quarks_initialize (void);
|
|
|
|
|
gst/: Re-commit the registry changes, along with an extra fix:
Original commit message from CVS:
* gst/gst.c: (init_pre), (scan_and_update_registry),
(ensure_current_registry_nonforking),
(ensure_current_registry_forking), (ensure_current_registry),
(init_post), (gst_debug_help), (gst_deinit):
* gst/gst_private.h:
* gst/gstregistry.c: (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_remove_plugin), (gst_registry_scan_path_level),
(gst_registry_scan_path),
(_priv_gst_registry_remove_cache_plugins),
(_priv_gst_registry_cleanup):
* gst/gstregistry.h:
Re-commit the registry changes, along with an extra fix:
When a cached plugin is encountered at a different file path,
update the stored path in the registry cache so that the parent
process knows where it actually is now when it re-reads the registry
cache. Fixes the thing that broke distcheck with the previous commit.
* tests/check/Makefile.am:
Clean up files named 'core' too when running make clean.
* tests/examples/manual/Makefile.am:
Set up a registry path for running these tests, and clean it properly
for distcheck.
2006-09-28 14:00:43 +00:00
|
|
|
/* Private registry functions */
|
|
|
|
gboolean _priv_gst_registry_remove_cache_plugins (GstRegistry *registry);
|
|
|
|
void _priv_gst_registry_cleanup (void);
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
/*** debugging categories *****************************************************/
|
|
|
|
|
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
|
|
|
|
2007-01-05 13:23:02 +00:00
|
|
|
#ifndef _MSC_VER
|
2006-03-19 21:39:21 +00:00
|
|
|
#define IMPORT_SYMBOL
|
2007-01-05 13:23:02 +00:00
|
|
|
#else /* _MSC_VER */
|
2006-04-09 16:57:34 +00:00
|
|
|
#ifndef LIBGSTREAMER_EXPORTS
|
2006-03-19 21:39:21 +00:00
|
|
|
#define IMPORT_SYMBOL __declspec(dllimport)
|
2006-04-09 16:57:34 +00:00
|
|
|
#else
|
|
|
|
#define IMPORT_SYMBOL
|
|
|
|
#endif
|
2006-03-19 21:39:21 +00:00
|
|
|
#endif
|
|
|
|
|
2000-12-29 10:02:17 +00:00
|
|
|
#include <gst/gstinfo.h>
|
2000-12-28 22:12:02 +00:00
|
|
|
|
2006-03-19 21:39:21 +00:00
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_GST_INIT;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_AUTOPLUG;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PARENTAGE;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_STATES;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_SCHEDULING;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_BUFFER;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_BUS;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_CAPS;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_CLOCK;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_ELEMENT_PADS;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PADS;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PIPELINE;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PLUGIN_LOADING;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PLUGIN_INFO;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PROPERTIES;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_XML;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_NEGOTIATION;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_REFCOUNTING;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_ERROR_SYSTEM;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_EVENT;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_MESSAGE;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PARAMS;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_CALL_TRACE;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_SIGNAL;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PROBE;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_REGISTRY;
|
|
|
|
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_QOS;
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define GST_CAT_GST_INIT NULL
|
|
|
|
#define GST_CAT_AUTOPLUG NULL
|
|
|
|
#define GST_CAT_AUTOPLUG_ATTEMPT NULL
|
|
|
|
#define GST_CAT_PARENTAGE NULL
|
|
|
|
#define GST_CAT_STATES NULL
|
|
|
|
#define GST_CAT_SCHEDULING NULL
|
|
|
|
#define GST_CAT_DATAFLOW NULL
|
|
|
|
#define GST_CAT_BUFFER NULL
|
2005-10-06 09:49:42 +00:00
|
|
|
#define GST_CAT_BUS NULL
|
2004-05-07 02:36:28 +00:00
|
|
|
#define GST_CAT_CAPS NULL
|
|
|
|
#define GST_CAT_CLOCK NULL
|
|
|
|
#define GST_CAT_ELEMENT_PADS NULL
|
|
|
|
#define GST_CAT_PADS NULL
|
|
|
|
#define GST_CAT_PIPELINE NULL
|
|
|
|
#define GST_CAT_PLUGIN_LOADING NULL
|
|
|
|
#define GST_CAT_PLUGIN_INFO NULL
|
|
|
|
#define GST_CAT_PROPERTIES NULL
|
|
|
|
#define GST_CAT_XML NULL
|
|
|
|
#define GST_CAT_NEGOTIATION NULL
|
|
|
|
#define GST_CAT_REFCOUNTING NULL
|
|
|
|
#define GST_CAT_ERROR_SYSTEM NULL
|
|
|
|
#define GST_CAT_EVENT NULL
|
Bump version number, we're now 0.9.0
Original commit message from CVS:
* configure.ac:
* gst/gst_private.h:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
(gst_bin_remove_func), (gst_bin_remove),
(gst_bin_get_by_name_recurse_up):
* gst/gstclock.c: (gst_clock_id_ref), (gst_clock_id_unref),
(gst_clock_id_compare_func), (gst_clock_id_wait),
(gst_clock_id_wait_async), (gst_clock_init),
(gst_clock_adjust_unlocked), (gst_clock_get_time):
* gst/gstelement.h:
* gst/gstinfo.c: (_gst_debug_init):
* gst/gstobject.h:
* gst/gstpad.c: (_gst_pad_default_fixate_foreach),
(gst_pad_collectv), (gst_pad_collect_valist), (gst_pad_query):
* gst/gstpad.h:
Bump version number, we're now 0.9.0
Add future debugging category.
Fix NULL _unref() in _get_by_name_recurse_up
Rearrange gstpad.h.
Update some docs.
2005-03-09 11:08:18 +00:00
|
|
|
#define GST_CAT_MESSAGE NULL
|
2004-05-07 02:36:28 +00:00
|
|
|
#define GST_CAT_PARAMS NULL
|
|
|
|
#define GST_CAT_CALL_TRACE NULL
|
2005-01-10 17:23:42 +00:00
|
|
|
#define GST_CAT_SIGNAL NULL
|
2005-01-13 16:50:49 +00:00
|
|
|
#define GST_CAT_PROBE NULL
|
2005-09-15 00:13:26 +00:00
|
|
|
#define GST_CAT_REGISTRY NULL
|
2006-03-13 11:08:28 +00:00
|
|
|
#define GST_CAT_QOS NULL
|
2004-05-07 02:36:28 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-20 17:12:49 +00:00
|
|
|
G_END_DECLS
|
2000-12-28 22:12:02 +00:00
|
|
|
#endif /* __GST_PRIVATE_H__ */
|