another massive documentation update
authorBrandon Lewis <brandon@collabora.co.uk>
Fri, 2 Jul 2010 14:23:41 +0000 (16:23 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 9 Jul 2010 11:21:16 +0000 (13:21 +0200)
14 files changed:
docs/libs/ges.types
ges/ges-timeline-overlay.h
ges/ges-timeline-test-source.h
ges/ges-timeline-text-overlay.h
ges/ges-timeline-title-source.c
ges/ges-timeline-title-source.h
ges/ges-track-audio-test-source.h
ges/ges-track-audio-transition.h
ges/ges-track-text-overlay.h
ges/ges-track-title-source.h
ges/ges-track-transition.h
ges/ges-track-video-test-source.h
ges/ges-track-video-transition.h
ges/ges.h

index 3ea7399..124854b 100644 (file)
@@ -6,12 +6,22 @@ ges_track_type_get_type
 ges_track_object_get_type
 ges_track_source_get_type
 ges_track_filesource_get_type
+ges_track_title_src_get_type
+ges_track_text_overlay_get_type
+ges_track_audio_test_source_get_type
+ges_track_video_test_source_get_type
+ges_track_audio_transition_get_type
+ges_track_video_transition_get_type
 ges_timeline_get_type
 ges_timeline_layer_get_type
 ges_timeline_object_get_type
 ges_timeline_pipeline_get_type
 ges_timeline_source_get_type
+ges_timeline_test_source_get_type
 ges_tl_filesource_get_type
+ges_tl_title_src_get_type
+ges_tl_text_overlay_get_type
+ges_timeline_overlay_get_type
 ges_timeline_transition_get_type
 ges_cust_timeline_src_get_type
 ges_simple_timeline_layer_get_type
index b5e6c41..ef34641 100644 (file)
@@ -46,7 +46,6 @@ G_BEGIN_DECLS
 
 /**
  * GESTimelineOverlay:
- * @parent: parent object
  */
 
 struct _GESTimelineOverlay {
index 2c8c4aa..6e26ebe 100644 (file)
@@ -48,7 +48,6 @@ G_BEGIN_DECLS
 
 /**
  * GESTimelineTestSource:
- * @parent: parent
  * 
  */
 
index 6d42edc..1616b80 100644 (file)
@@ -47,7 +47,6 @@ G_BEGIN_DECLS
 
 /**
  * GESTimelineTextOverlay:
- * @parent: parent
  * 
  */
 
index 2857a91..5f8570e 100644 (file)
@@ -159,21 +159,19 @@ ges_tl_title_src_class_init (GESTimelineTitleSourceClass * klass)
   object_class->finalize = ges_tl_title_src_finalize;
 
   /**
-   * GESTimelineTitleSource:text
+   * GESTimelineTitleSource:text:
    *
    * The text to diplay
    */
-
   g_object_class_install_property (object_class, PROP_TEXT,
       g_param_spec_string ("text", "Text", "The text to display",
           DEFAULT_TEXT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
 
   /**
-   * GESTimelineTitleSource:font-dec
+   * GESTimelineTitleSource:font-desc:
    *
    * Pango font description string
    */
-
   g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_FONT_DESC,
       g_param_spec_string ("font-desc", "font description",
           "Pango font description of font to be used for rendering. "
@@ -182,7 +180,7 @@ ges_tl_title_src_class_init (GESTimelineTitleSourceClass * klass)
           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
 
   /**
-   * GESTimelineTitleSource:valignment
+   * GESTimelineTitleSource:valignment:
    *
    * Vertical alignent of the text
    */
@@ -192,7 +190,7 @@ ges_tl_title_src_class_init (GESTimelineTitleSourceClass * klass)
           DEFAULT_VALIGNMENT,
           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
   /**
-   * GESTimelineTitleSource:halignment
+   * GESTimelineTitleSource:halignment:
    *
    * Horizontal alignment of the text
    */
index 20c8d7a..6a6e95c 100644 (file)
@@ -47,7 +47,6 @@ G_BEGIN_DECLS
 
 /**
  * GESTimelineTitleSource:
- * @parent: parent
  * 
  */
 
index 51c8c74..c70cc2f 100644 (file)
@@ -46,7 +46,6 @@ G_BEGIN_DECLS
 
 /** 
  * GESTrackAudioTestSource:
- * @parent: parent
  *
  */
 
index 262bc98..7468d62 100644 (file)
@@ -46,7 +46,6 @@ G_BEGIN_DECLS
 
 /** 
  * GESTrackAudioTransition:
- * @parent: parent
  *
  */
 
index 3f6271a..0870dc5 100644 (file)
@@ -47,7 +47,6 @@ G_BEGIN_DECLS
 
 /** 
  * GESTrackTextOverlay:
- * @parent: parent
  *
  */
 struct _GESTrackTextOverlay {
index f7e467f..49fbd01 100644 (file)
@@ -46,7 +46,6 @@ G_BEGIN_DECLS
 
 /** 
  * GESTrackTitleSource:
- * @parent: parent
  *
  */
 struct _GESTrackTitleSource {
index 380ccb9..487ea64 100644 (file)
@@ -52,7 +52,6 @@ G_BEGIN_DECLS
 
 /**
  * GESTrackTransition:
- * @parent: parent
  *
  * Track level representation of a transition. Has a concrete implementation
  * for both audio and video streams.
index 987a130..3dc9f6c 100644 (file)
@@ -47,7 +47,6 @@ G_BEGIN_DECLS
 
 /** 
  * GESTrackVideoTestSource:
- * @parent: parent
  */
 struct _GESTrackVideoTestSource {
   GESTrackSource parent;
index c8faf80..c0b50b3 100644 (file)
@@ -46,16 +46,14 @@ G_BEGIN_DECLS
 
 /** 
  * GESTrackVideoTransition:
- * @parent: parent
- *
+ * @type: the 
  */
 
 struct _GESTrackVideoTransition {
   GESTrackTransition parent;
   
   /*< public >*/
-  /* given to to smpte alpha element */
-  gint                          type;
+  GESVideoTransitionType        type;
 
   /*< private >*/
   
index 46e34f8..221a107 100644 (file)
--- a/ges/ges.h
+++ b/ges/ges.h
@@ -49,6 +49,9 @@
 #include <ges/ges-track-audio-test-source.h>
 #include <ges/ges-track-title-source.h>
 #include <ges/ges-track-text-overlay.h>
+#include <ges/ges-track-transition.h>
+#include <ges/ges-track-video-transition.h>
+#include <ges/ges-track-audio-transition.h>
 
 #include <ges/ges-utils.h>