mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Add API additions for upcoming 0.10.21 core release
Original commit message from CVS: * configure.ac: * gst/base.defs: * gst/gst-0.10.21.ignore: * gst/gst.defs: * gst/gstversion.override.in: Add API additions for upcoming 0.10.21 core release
This commit is contained in:
parent
94a232fdbf
commit
490f3fde52
7 changed files with 68 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2008-09-09 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* configure.ac:
|
||||
* gst/base.defs:
|
||||
* gst/gst-0.10.21.ignore:
|
||||
* gst/gst.defs:
|
||||
* gst/gstversion.override.in:
|
||||
Add API additions for upcoming 0.10.21 core release
|
||||
|
||||
2008-09-04 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* examples/pipeline-tester:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 8d494854a6018336a80ece82ceb3df0033e2da9c
|
||||
Subproject commit 1ff63d8f92c36bf207434436f4ce75f2a4ea11a4
|
|
@ -145,6 +145,13 @@ then
|
|||
IGNORE_GST_0_10_20=""
|
||||
fi
|
||||
|
||||
if test $GST_MINOR_VERSION -lt "21"
|
||||
then
|
||||
IGNORE_GST_0_10_21="gst-0.10.21.ignore"
|
||||
else
|
||||
IGNORE_GST_0_10_21=""
|
||||
fi
|
||||
|
||||
dnl plugins base
|
||||
if test $GST_PB_MINOR_VERSION -lt "14"
|
||||
then
|
||||
|
@ -175,6 +182,7 @@ else
|
|||
IGNORE_GST_0_10_16=""
|
||||
IGNORE_GST_0_10_18=""
|
||||
IGNORE_GST_0_10_20=""
|
||||
IGNORE_GST_0_10_21=""
|
||||
IGNORE_GST_PB_0_10_14=""
|
||||
IGNORE_GST_PB_0_10_16=""
|
||||
IGNORE_GST_PB_0_10_18=""
|
||||
|
@ -187,6 +195,7 @@ AC_SUBST(IGNORE_GST_0_10_15)
|
|||
AC_SUBST(IGNORE_GST_0_10_16)
|
||||
AC_SUBST(IGNORE_GST_0_10_18)
|
||||
AC_SUBST(IGNORE_GST_0_10_20)
|
||||
AC_SUBST(IGNORE_GST_0_10_21)
|
||||
AC_SUBST(IGNORE_GST_PB_0_10_14)
|
||||
AC_SUBST(IGNORE_GST_PB_0_10_16)
|
||||
AC_SUBST(IGNORE_GST_PB_0_10_18)
|
||||
|
|
|
@ -626,6 +626,22 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-method suggest
|
||||
(of-object "GstBaseTransform")
|
||||
(c-name "gst_base_transform_suggest")
|
||||
(return-type "none")
|
||||
(parameters
|
||||
'("GstCaps*" "caps")
|
||||
'("guint" "size")
|
||||
)
|
||||
)
|
||||
|
||||
(define-method reconfigure
|
||||
(of-object "GstBaseTransform")
|
||||
(c-name "gst_base_transform_reconfigure")
|
||||
(return-type "none")
|
||||
)
|
||||
|
||||
(define-virtual transform_caps
|
||||
(of-object "GstBaseTransform")
|
||||
(return-type "GstCaps*")
|
||||
|
|
11
gst/gst-0.10.21.ignore
Normal file
11
gst/gst-0.10.21.ignore
Normal file
|
@ -0,0 +1,11 @@
|
|||
%%
|
||||
ignore
|
||||
gst_pad_set_iterate_internal_links_function
|
||||
gst_pad_iterate_internal_links
|
||||
gst_pad_iterate_internal_links_default
|
||||
gst_base_transform_suggest
|
||||
gst_base_transform_reconfigure
|
||||
%%
|
||||
ignore-type
|
||||
|
||||
%%
|
21
gst/gst.defs
21
gst/gst.defs
|
@ -4164,6 +4164,27 @@
|
|||
(return-type "GList*")
|
||||
)
|
||||
|
||||
(define-method set_iterate_internal_links_function
|
||||
(of-object "GstPad")
|
||||
(c-name "gst_pad_set_iterate_internal_links_function")
|
||||
(return-type "none")
|
||||
(parameters
|
||||
'("GstPadIterIntLinkFunction" "iterintlink")
|
||||
)
|
||||
)
|
||||
|
||||
(define-method iterate_internal_links
|
||||
(of-object "GstPad")
|
||||
(c-name "gst_pad_iterate_internal_links")
|
||||
(return-type "GstIterator*")
|
||||
)
|
||||
|
||||
(define-method iterate_internal_links_default
|
||||
(of-object "GstPad")
|
||||
(c-name "gst_pad_iterate_internal_links_default")
|
||||
(return-type "GstIterator*")
|
||||
)
|
||||
|
||||
(define-method set_query_type_function
|
||||
(of-object "GstPad")
|
||||
(c-name "gst_pad_set_query_type_function")
|
||||
|
|
|
@ -9,5 +9,6 @@ include
|
|||
@IGNORE_GST_0_10_18@
|
||||
@IGNORE_GST_PB_0_10_18@
|
||||
@IGNORE_GST_0_10_20@
|
||||
@IGNORE_GST_0_10_21@
|
||||
@IGNORE_GST_LOADSAVE@
|
||||
%%
|
||||
|
|
Loading…
Reference in a new issue