mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
2ae03ba72f
Original commit message from CVS: * docs/gst/gstreamer-sections.txt:: * gst/gst_private.h: (GstPluginDep), (_GstPluginPrivate): * gst/gstplugin.c: (gst_plugin_init), (gst_plugin_finalize), (gst_plugin_class_init), (gst_plugin_list_free), (gst_plugin_ext_dep_get_env_vars_hash), (_priv_plugin_deps_env_vars_changed), (gst_plugin_ext_dep_extract_env_vars_paths), (gst_plugin_ext_dep_get_hash_from_stat_entry), (gst_plugin_ext_dep_direntry_matches), (gst_plugin_ext_dep_scan_dir_and_match_names), (gst_plugin_ext_dep_scan_path_with_filenames), (gst_plugin_ext_dep_get_stat_hash), (_priv_plugin_deps_files_changed), (gst_plugin_ext_dep_free), (gst_plugin_ext_dep_strv_equal), (gst_plugin_ext_dep_equals), (gst_plugin_add_dependency), (gst_plugin_add_dependency_simple): * gst/gstplugin.h: (GstPluginPrivate), (GstPluginFlags), (GST_PLUGIN_DEPENDENCY_FLAG_NONE), (GST_PLUGIN_DEPENDENCY_FLAG_RECURSE), (GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY), (GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX), (GstPluginDependencyFlags), (GstPluginFilter): * gst/gstregistry.c: (gst_registry_scan_path_level): * gst/gstregistrybinary.c: (gst_registry_binary_save_feature), (gst_registry_binary_save_plugin_dep), (gst_registry_binary_save_plugin), (gst_registry_binary_load_feature), (gst_registry_binary_load_plugin_dep_strv), (gst_registry_binary_load_plugin_dep), (gst_registry_binary_load_plugin): * gst/gstregistrybinary.h: (GST_MAGIC_BINARY_VERSION_STR), (GstBinaryPluginElement), (_GstBinaryDep), (GstBinaryDep): * gst/gstregistryxml.c: (gst_registry_xml_save_plugin): Add API for making a GStreamer plugin 'dependent' on external files, directories or environment variables, so that GStreamer knows when it needs to re-load GStreamer plugins that wrap other plugin systems. Fixes bug #350477. API: add gst_plugin_add_dependency() API: add gst_plugin_add_dependency_simple()
188 lines
4.5 KiB
C
188 lines
4.5 KiB
C
/* GStreamer
|
|
* Copyright (C) 2006 Josep Torra <josep@fluendo.com>
|
|
* Copyright (C) 2006 Mathieu Garcia <matthieu@fluendo.com>
|
|
* Copyright (C) 2006 Stefan Kost <ensonic@sonicpulse.de>
|
|
*
|
|
* gstregistrybinary.h: Header for registry handling
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/* SUGGESTIONS AND TODO :
|
|
** ====================
|
|
** - Use a compressed registry, but would induce performance loss
|
|
** - Encrypt the registry, for security purpose, but would also reduce performances
|
|
*/
|
|
|
|
#ifndef __GST_REGISTRYBINARY_H__
|
|
#define __GST_REGISTRYBINARY_H__
|
|
|
|
#include <gst/gstpad.h>
|
|
#include <gst/gstregistry.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
/*
|
|
* GST_MAGIC_BINARY_REGISTRY_STR:
|
|
*
|
|
* A tag, written at the beginning of the file
|
|
*/
|
|
#define GST_MAGIC_BINARY_REGISTRY_STR "\xc0\xde\xf0\x0d"
|
|
/*
|
|
* GST_MAGIC_BINARY_REGISTRY_LEN:
|
|
*
|
|
* length of the header tag.
|
|
*/
|
|
#define GST_MAGIC_BINARY_REGISTRY_LEN (4)
|
|
|
|
/*
|
|
* GST_MAGIC_BINARY_VERSION_STR:
|
|
*
|
|
* The current version of the binary registry format.
|
|
* This _must_ be updated whenever the registry format changes,
|
|
* we currently use the core version where this change happened.
|
|
*/
|
|
#define GST_MAGIC_BINARY_VERSION_STR ("0.10.21.2")
|
|
|
|
/*
|
|
* GST_MAGIC_BINARY_VERSION_LEN:
|
|
*
|
|
* length of the version string.
|
|
*/
|
|
#define GST_MAGIC_BINARY_VERSION_LEN (64)
|
|
|
|
typedef struct _GstBinaryRegistryMagic
|
|
{
|
|
gchar magic[GST_MAGIC_BINARY_REGISTRY_LEN];
|
|
gchar version[GST_MAGIC_BINARY_VERSION_LEN];
|
|
} GstBinaryRegistryMagic;
|
|
|
|
/*
|
|
* we reference strings directly from the plugins and in this case set CONST to
|
|
* avoid freeing them
|
|
*/
|
|
enum {
|
|
GST_BINARY_REGISTRY_FLAG_NONE = 0,
|
|
GST_BINARY_REGISTRY_FLAG_CONST = 1
|
|
};
|
|
|
|
/*
|
|
* GstBinaryChunk:
|
|
*
|
|
* Header for binary blobs
|
|
*/
|
|
typedef struct _GstBinaryChunk
|
|
{
|
|
gpointer data;
|
|
guint size;
|
|
guint flags;
|
|
gboolean align;
|
|
} GstBinaryChunk;
|
|
|
|
/*
|
|
* GstBinaryPluginElement:
|
|
*
|
|
* @nfeatures: says how many binary plugin feature structures we will have
|
|
* right after the structure itself.
|
|
*
|
|
* A structure containing (staticely) every information needed for a plugin
|
|
*/
|
|
|
|
typedef struct _GstBinaryPluginElement
|
|
{
|
|
gulong file_size;
|
|
gulong file_mtime;
|
|
|
|
guint n_deps;
|
|
|
|
guint nfeatures;
|
|
} GstBinaryPluginElement;
|
|
|
|
/* GstBinaryDep:
|
|
*/
|
|
typedef struct _GstBinaryDep
|
|
{
|
|
guint flags;
|
|
guint n_env_vars;
|
|
guint n_paths;
|
|
guint n_names;
|
|
|
|
guint env_hash;
|
|
guint stat_hash;
|
|
} GstBinaryDep;
|
|
|
|
/*
|
|
* GstBinaryPluginFeature:
|
|
* @rank: rank of the feature
|
|
*
|
|
* A structure containing the plugin features
|
|
*/
|
|
typedef struct _GstBinaryPluginFeature
|
|
{
|
|
gulong rank;
|
|
} GstBinaryPluginFeature;
|
|
|
|
/*
|
|
* GstBinaryElementFactory:
|
|
* @npadtemplates: stores the number of GstBinaryPadTemplate structures
|
|
* following the structure
|
|
* @ninterfaces: stores the number of interface names following the structure
|
|
* @nuriprotocols: stores the number of protocol strings following the structure
|
|
*
|
|
* A structure containing the element factory fields
|
|
*/
|
|
typedef struct _GstBinaryElementFactory
|
|
{
|
|
GstBinaryPluginFeature plugin_feature;
|
|
|
|
guint npadtemplates;
|
|
guint ninterfaces;
|
|
guint nuriprotocols;
|
|
} GstBinaryElementFactory;
|
|
|
|
/*
|
|
* GstBinaryTypeFindFactory:
|
|
* @nextensions: stores the number of typefind extensions
|
|
*
|
|
* A structure containing the element factory fields
|
|
*/
|
|
typedef struct _GstBinaryTypeFindFactory
|
|
{
|
|
GstBinaryPluginFeature plugin_feature;
|
|
|
|
guint nextensions;
|
|
} GstBinaryTypeFindFactory;
|
|
|
|
/*
|
|
* GstBinaryPadTemplate:
|
|
*
|
|
* A structure containing the static pad templates of a plugin feature
|
|
*/
|
|
typedef struct _GstBinaryPadTemplate
|
|
{
|
|
guint direction; /* Either 0:"sink" or 1:"src" */
|
|
GstPadPresence presence;
|
|
} GstBinaryPadTemplate;
|
|
|
|
|
|
/* Function prototypes */
|
|
gboolean gst_registry_binary_write_cache(GstRegistry *registry, const char *location);
|
|
gboolean gst_registry_binary_read_cache(GstRegistry *registry, const char *location);
|
|
|
|
#endif /* !__GST_REGISTRYBINARY_H__ */
|
|
|