gir: fix warnings
authorLubosz Sarnecki <lubosz@gmail.com>
Wed, 13 Nov 2013 12:18:00 +0000 (13:18 +0100)
committerThibault Saunier <thibault.saunier@collabora.com>
Fri, 22 Nov 2013 20:50:27 +0000 (17:50 -0300)
ges/Makefile.am
ges/ges-gerror.h
ges/ges-timeline.c
ges/ges-track-element.c
ges/ges-uri-asset.c
ges/ges-utils.c
ges/ges-utils.h

index 30728d8b31180b4ae049b8db4fc62009ce721abc..5ded057a260c3735b203cf58e5c76d711bd34b2e 100644 (file)
@@ -130,12 +130,12 @@ libges_@GST_API_VERSION@include_HEADERS =         \
        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) \
@@ -189,6 +189,7 @@ GES-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libges-@GST_API_VERSION@.la
                --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);" \
@@ -218,6 +219,7 @@ typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
                --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)
 
index b35f2a4e05e5de42933c505734d13eea564012ea..8391d5e9737594a4eab4a2b84c9c79bada091f4a 100644 (file)
  * 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
 
 /**
index e620f85976ce395bc103db2e6c78ace571e0be91..1edfd2f0bb01d5156308013445aaa02ed52460ae 100644 (file)
@@ -521,7 +521,7 @@ ges_timeline_class_init (GESTimelineClass * klass)
       G_TYPE_PTR_ARRAY, 2, GES_TYPE_CLIP, GES_TYPE_TRACK_ELEMENT);
 
   /**
-   * GESTimeline::commited
+   * GESTimeline::commited:
    * @timeline: the #GESTimeline
    */
   ges_timeline_signals[COMMITED] =
index cf052e6749860686bf78ee1daa36b88b6d27f792..e1060caaa00cc9c03631eb58bc805e48c91eb7b2 100644 (file)
@@ -279,7 +279,7 @@ ges_track_element_init (GESTrackElement * self)
   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);
 
 }
@@ -733,7 +733,7 @@ strv_find_str (const gchar ** strv, const char *str)
  * 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
index 783733266abb0829c8dabe6e4ff7e52f8d6c9df9..40c427013514110f00dfe8529c40d33699a3c861 100644 (file)
@@ -487,19 +487,19 @@ ges_uri_clip_asset_request_sync (const gchar * uri, GError ** error)
 
 /**
  * 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);
 }
 
 /**
index 769952dba3225ea4ff7563bd384123afbe7eac4a..487dd6c86b81fef589c09aa11901a9812426880e 100644 (file)
@@ -101,7 +101,7 @@ element_end_compare (GESTimelineElement * a, GESTimelineElement * b)
 }
 
 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;
@@ -111,7 +111,7 @@ pspec_equal (gconstpointer key_spec_1, gconstpointer key_spec_2)
 }
 
 guint
-pspec_hash (gconstpointer key_spec)
+ges_pspec_hash (gconstpointer key_spec)
 {
   const GParamSpec *key = key_spec;
   const gchar *p;
index ca09127c844abcb59114a78daf4e0731ba14fff6..59c1f9d8f1ce9fa3036633824f2ebba36ea4fb52 100644 (file)
@@ -27,8 +27,8 @@
 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