mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
2f85a255ba
Original commit message from CVS: * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad): Remove usage of gst_pad_proxy_fixate. * gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure), (gst_caps_split_one), (gst_caps_replace): Add poisoning code. * gst/gstmarshal.list: Add pointer__pointer for fixate signal * gst/gstpad.c: (gst_real_pad_class_init), (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate), (_gst_pad_default_fixate_func), (gst_pad_proxy_fixate), (gst_pad_set_explicit_caps), (gst_pad_template_new): Add poisoning code. Add fixate signal on RealPad. Change set_explicit_caps() to take const GstCaps, like try_set_caps(). * gst/gstpad.h: * testsuite/caps/Makefile.am: * testsuite/caps/app_fixate.c: Add a test for the fixate signal
38 lines
865 B
Makefile
38 lines
865 B
Makefile
include ../Rules
|
|
|
|
|
|
tests_pass = \
|
|
app_fixate \
|
|
intersection \
|
|
compatibility \
|
|
normalisation \
|
|
union \
|
|
string-conversions \
|
|
fixed \
|
|
intersect2 \
|
|
caps \
|
|
value_compare \
|
|
value_intersect
|
|
|
|
tests_fail =
|
|
|
|
|
|
app_fixate_LDADD = $(GST_LIBS)
|
|
app_fixate_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
intersection_LDADD = $(GST_LIBS)
|
|
intersection_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
compatibility_LDADD = $(GST_LIBS)
|
|
compatibility_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
normalisation_LDADD = $(GST_LIBS)
|
|
normalisation_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
union_LDADD = $(GST_LIBS)
|
|
union_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
string_conversions_LDADD = $(GST_LIBS)
|
|
string_conversions_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
fixed_LDADD = $(GST_LIBS)
|
|
fixed_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
intersect2_LDADD = $(GST_LIBS)
|
|
intersect2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
|
|
|
|
|
|