ges-smart-adder.h \
ges-smart-video-mixer.h \
ges-utils.h \
- ges-group.h \
- gstframepositionner.h
+ ges-group.h
noinst_HEADERS = \
ges-internal.h \
- ges-auto-transition.h
+ ges-auto-transition.h \
+ gstframepositionner.h
libges_@GST_API_VERSION@_la_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) \
$(GST_VIDEO_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
--libtool="$(top_builddir)/libtool" \
--pkg gstreamer-@GST_API_VERSION@ \
--pkg gstreamer-pbutils-@GST_API_VERSION@ \
+ --pkg gstreamer-controller-@GST_API_VERSION@ \
--pkg gio-2.0 \
--pkg-export ges-@GST_API_VERSION@ \
--add-init-section="gst_init(NULL, NULL);" \
--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-video-@GST_API_VERSION@` \
--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-tag-@GST_API_VERSION@` \
--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
+ --includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-controller-@GST_API_VERSION@` \
--includedir=`$(PKG_CONFIG) --variable=girdir gio-2.0` \
$(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
* Boston, MA 02110-1301, USA.
*/
+#ifndef __GES_ERROR_H__
+#define __GES_ERROR_H__
+
/**
* SECTION: ges-gerror
* @short_description: GError — Categorized error messages
*/
-#ifndef __GES_ERROR_H__
-#define __GES_ERROR_H__
-
G_BEGIN_DECLS
/**
G_TYPE_PTR_ARRAY, 2, GES_TYPE_CLIP, GES_TYPE_TRACK_ELEMENT);
/**
- * GESTimeline::commited
+ * GESTimeline::commited:
* @timeline: the #GESTimeline
*/
ges_timeline_signals[COMMITED] =
priv->bindings_hashtable = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, NULL);
priv->children_props =
- g_hash_table_new_full ((GHashFunc) pspec_hash, pspec_equal,
+ g_hash_table_new_full ((GHashFunc) ges_pspec_hash, ges_pspec_equal,
(GDestroyNotify) g_param_spec_unref, gst_object_unref);
}
* take into account (as defined in the factory meta "klass" field)
* @blacklist: (array zero-terminated=1) (transfer none) (allow-none): A
* blacklist of elements factory names to not take into account
- * @witelist: (array zero-terminated=1) (transfer none) (allow-none): A list
+ * @whitelist: (array zero-terminated=1) (transfer none) (allow-none): A list
* of propery names to add as children properties
*
* Looks for the properties defines with the various parametters and add
/**
* ges_uri_clip_asset_class_set_timeout:
- * @class: The #GESUriClipAssetClass on which to set the discoverer timeout
+ * @klass: The #GESUriClipAssetClass on which to set the discoverer timeout
* @timeout: The timeout to set
*
* Sets the timeout of #GESUriClipAsset loading
*/
void
-ges_uri_clip_asset_class_set_timeout (GESUriClipAssetClass * class,
+ges_uri_clip_asset_class_set_timeout (GESUriClipAssetClass * klass,
GstClockTime timeout)
{
- g_return_if_fail (GES_IS_URI_CLIP_ASSET_CLASS (class));
+ g_return_if_fail (GES_IS_URI_CLIP_ASSET_CLASS (klass));
- g_object_set (class->discoverer, "timeout", timeout, NULL);
- g_object_set (class->sync_discoverer, "timeout", timeout, NULL);
+ g_object_set (klass->discoverer, "timeout", timeout, NULL);
+ g_object_set (klass->sync_discoverer, "timeout", timeout, NULL);
}
/**
}
gboolean
-pspec_equal (gconstpointer key_spec_1, gconstpointer key_spec_2)
+ges_pspec_equal (gconstpointer key_spec_1, gconstpointer key_spec_2)
{
const GParamSpec *key1 = key_spec_1;
const GParamSpec *key2 = key_spec_2;
}
guint
-pspec_hash (gconstpointer key_spec)
+ges_pspec_hash (gconstpointer key_spec)
{
const GParamSpec *key = key_spec;
const gchar *p;
G_BEGIN_DECLS
GESTimeline * ges_timeline_new_audio_video (void);
-gboolean pspec_equal (gconstpointer key_spec_1, gconstpointer key_spec_2);
-guint pspec_hash (gconstpointer key_spec);
+gboolean ges_pspec_equal (gconstpointer key_spec_1, gconstpointer key_spec_2);
+guint ges_pspec_hash (gconstpointer key_spec);
G_END_DECLS