diff options
author | Edward Hervey <bilboed@bilboed.com> | 2005-12-05 13:10:59 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2005-12-05 13:10:59 +0000 |
commit | b3e564eff577e2f577d795051bbcca85d47c89dc (patch) | |
tree | be44ba4e9047044b03a6182bb288b226f60bc492 | |
parent | f5f90c4be742075184491dfe0e31d36a353e0499 (diff) |
gst/gst.defs: Wrapped last pre-0.10 API update (I hope...)CHANGELOG_START
Original commit message from CVS:
* gst/gst.defs: (alloc_buffer_and_set_caps):
Wrapped last pre-0.10 API update (I hope...)
* examples/gstfile.py: (Discoverer._new_decoded_pad_cb):
Fix for fractional framerates.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | gst/gst.defs | 12 |
2 files changed, 15 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2005-12-05 Edward Hervey <edward@fluendo.com> + * gst/gst.defs: (alloc_buffer_and_set_caps): + Wrapped last pre-0.10 API update (I hope...) + * examples/gstfile.py: (Discoverer._new_decoded_pad_cb): Fix for fractional framerates. diff --git a/gst/gst.defs b/gst/gst.defs index 9cb5344..8d02798 100644 --- a/gst/gst.defs +++ b/gst/gst.defs @@ -3360,6 +3360,18 @@ ) ) +(define-method alloc_buffer_and_set_caps + (of-object "GstPad") + (c-name "gst_pad_alloc_buffer_and_set_caps") + (return-type "GstFlowReturn") + (parameters + '("guint64" "offset") + '("gint" "size") + '("GstCaps*" "caps") + '("GstBuffer**" "buf") + ) +) + (define-method set_activate_function (of-object "GstPad") (c-name "gst_pad_set_activate_function") |