mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gst/base.defs: Revert guint8* to gchar* modifications for the adapter
Original commit message from CVS: * gst/base.defs: Revert guint8* to gchar* modifications for the adapter * gst/gst.defs: Cleanups and API additions
This commit is contained in:
parent
112f72dabc
commit
938205e1da
3 changed files with 15 additions and 7 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-01-09 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/base.defs:
|
||||
Revert guint8* to gchar* modifications for the adapter
|
||||
* gst/gst.defs:
|
||||
Cleanups and API additions
|
||||
|
||||
2006-01-08 Martin Soto <martinsoto@users.sourceforge.net>
|
||||
|
||||
* gst/gststructure.override: (_wrap_gst_structure_set_value):
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
(define-method peek
|
||||
(of-object "GstAdapter")
|
||||
(c-name "gst_adapter_peek")
|
||||
(return-type "const-gchar*")
|
||||
(return-type "const-guint8*")
|
||||
(parameters
|
||||
'("guint" "size")
|
||||
)
|
||||
|
@ -99,7 +99,7 @@
|
|||
(define-method take
|
||||
(of-object "GstAdapter")
|
||||
(c-name "gst_adapter_take")
|
||||
(return-type "gchar*")
|
||||
(return-type "guint8*")
|
||||
(parameters
|
||||
'("guint" "nbytes")
|
||||
)
|
||||
|
|
11
gst/gst.defs
11
gst/gst.defs
|
@ -5927,6 +5927,7 @@
|
|||
'("gchar**" "extensions")
|
||||
'("const-GstCaps*" "possible_caps")
|
||||
'("gpointer" "data")
|
||||
'("GDestroyNotify" "data_notify")
|
||||
)
|
||||
)
|
||||
|
||||
|
@ -6086,16 +6087,16 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-function gdouble_to_guint64
|
||||
(c-name "gst_gdouble_to_guint64")
|
||||
(define-function util_gdouble_to_guint64
|
||||
(c-name "gst_util_gdouble_to_guint64")
|
||||
(return-type "guint64")
|
||||
(parameters
|
||||
'("gdouble" "value")
|
||||
)
|
||||
)
|
||||
|
||||
(define-function guint64_to_gdouble
|
||||
(c-name "gst_guint64_to_gdouble")
|
||||
(define-function util_guint64_to_gdouble
|
||||
(c-name "gst_util_guint64_to_gdouble")
|
||||
(return-type "gdouble")
|
||||
(parameters
|
||||
'("guint64" "value")
|
||||
|
@ -6112,7 +6113,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-function gst_util_uint64_scale_int
|
||||
(define-function util_uint64_scale_int
|
||||
(c-name "gst_util_uint64_scale_int")
|
||||
(return-type "guint64")
|
||||
(parameters
|
||||
|
|
Loading…
Reference in a new issue