mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
comments: add a few comments to the sparsely documented plugin loader
This commit is contained in:
parent
8f1cd236ec
commit
012cf2862f
1 changed files with 3 additions and 0 deletions
|
@ -61,12 +61,14 @@ static gboolean plugin_loader_free (GstPluginLoader * loader);
|
|||
static gboolean plugin_loader_load (GstPluginLoader * loader,
|
||||
const gchar * filename, off_t file_size, time_t file_mtime);
|
||||
|
||||
/* functions used in GstRegistry scanning */
|
||||
const GstPluginLoaderFuncs _priv_gst_plugin_loader_funcs = {
|
||||
plugin_loader_new, plugin_loader_free, plugin_loader_load
|
||||
};
|
||||
|
||||
typedef struct _PendingPluginEntry
|
||||
{
|
||||
/* sequence number */
|
||||
guint32 tag;
|
||||
gchar *filename;
|
||||
off_t file_size;
|
||||
|
@ -92,6 +94,7 @@ struct _GstPluginLoader
|
|||
guint tx_buf_write;
|
||||
guint tx_buf_read;
|
||||
|
||||
/* next sequence number (for PendingPluginEntry) */
|
||||
guint32 next_tag;
|
||||
|
||||
guint8 *rx_buf;
|
||||
|
|
Loading…
Reference in a new issue