gst/: And more API updated, pom po do pom pom pom....

Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
And more API updated, pom po do pom pom pom....
This commit is contained in:
Edward Hervey 2005-11-23 14:43:26 +00:00
parent d73a152fec
commit fbe483d85b
3 changed files with 28 additions and 7 deletions

View file

@ -1,3 +1,9 @@
2005-11-23 Edward Hervey <edward@fluendo.com>
* gst/gst-types.defs:
* gst/gst.defs:
And more API updated, pom po do pom pom pom....
2005-11-23 Edward Hervey <edward@fluendo.com>
* gst/interfaces.defs:

View file

@ -409,6 +409,7 @@
'("caps" "GST_CORE_ERROR_CAPS")
'("tag" "GST_CORE_ERROR_TAG")
'("missing-plugin" "GST_CORE_ERROR_MISSING_PLUGIN")
'("clock" "GST_CORE_ERROR_CLOCK")
'("num-errors" "GST_CORE_ERROR_NUM_ERRORS")
)
)

View file

@ -726,7 +726,8 @@
(parameters
'("GstClockTime" "internal")
'("GstClockTime" "external")
'("gdouble" "rate")
'("GstClockTime" "rate_num")
'("GstClockTime" "rate_denom")
)
)
@ -737,7 +738,8 @@
(parameters
'("GstClockTime*" "internal")
'("GstClockTime*" "external")
'("gdouble*" "rate")
'("GstClockTime*" "rate_num")
'("GstClockTime*" "rate_denom")
)
)
@ -5017,6 +5019,17 @@
)
)
(define-method get_fraction
(of-object "GstStructure")
(c-name "gst_structure_get_fraction")
(return-type "gboolean")
(parameters
'("const-gchar*" "fieldname")
'("gint*" "value_numerator")
'("gint*" "value_denominator")
)
)
(define-method to_string
(of-object "GstStructure")
(c-name "gst_structure_to_string")
@ -5069,7 +5082,8 @@
(return-type "gboolean")
(parameters
'("const-char*" "field_name")
'("const-GValue*" "target")
'("const-gint" "target_numerator")
'("const-gint" "target_denominator")
)
)
@ -6069,11 +6083,11 @@
)
)
(define-function util_clock_time_scale
(c-name "gst_util_clock_time_scale")
(return-type "GstClockTime")
(define-function gst_util_uint64_scale_int
(c-name "gst_util_uint64_scale_int")
(return-type "guint64")
(parameters
'("GstClockTime" "val")
'("guint64" "val")
'("gint" "num")
'("gint" "denom")
)