mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
ae7fb01363
Original commit message from CVS: * gst/gstvalue.c: (gst_greatest_common_divisor): use ints and return ints, fractions only use ints, too, so this avoids accidently casting multiplications to unsigned (gst_value_lcopy_fraction): it's ints, not uint32 (gst_value_set_fraction): disallow minint, multiplying and negation are broken with it (gst_value_fraction_multiply): fix to make large numbers work and get rid of the assumption that the multiplication of two ints fits an int64 - dunno if that's true for all systems * testsuite/caps/Makefile.am: * testsuite/caps/fraction-multiply-and-zero.c: (check_multiplication), (check_equal), (zero_test), (main): add tests for all the stuff above * testsuite/caps/value_compare.c: (test1): fix comment * tests/.cvsignore: * testsuite/caps/.cvsignore: * testsuite/debug/.cvsignore: * testsuite/dlopen/.cvsignore: * testsuite/states/.cvsignore: get up to date
67 lines
1.8 KiB
Makefile
67 lines
1.8 KiB
Makefile
include ../Rules
|
|
|
|
|
|
tests_pass = \
|
|
app_fixate \
|
|
intersection \
|
|
compatibility \
|
|
deserialize \
|
|
normalisation \
|
|
union \
|
|
string-conversions \
|
|
fixed \
|
|
fraction-multiply-and-zero \
|
|
intersect2 \
|
|
caps \
|
|
value_compare \
|
|
value_intersect \
|
|
value_serialize \
|
|
audioscale \
|
|
filtercaps \
|
|
eratosthenes \
|
|
renegotiate \
|
|
subtract \
|
|
sets \
|
|
simplify \
|
|
random
|
|
|
|
EXTRA_DIST = caps_strings
|
|
|
|
noinst_HEADERS = \
|
|
caps.h
|
|
|
|
tests_fail =
|
|
tests_ignore =
|
|
|
|
app_fixate_LDADD = $(GST_OBJ_LIBS)
|
|
app_fixate_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
intersection_LDADD = $(GST_OBJ_LIBS)
|
|
intersection_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
compatibility_LDADD = $(GST_OBJ_LIBS)
|
|
compatibility_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
deserialize_LDADD = $(GST_OBJ_LIBS)
|
|
deserialize_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
normalisation_LDADD = $(GST_OBJ_LIBS)
|
|
normalisation_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
union_LDADD = $(GST_OBJ_LIBS)
|
|
union_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
string_conversions_LDADD = $(GST_OBJ_LIBS)
|
|
string_conversions_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
fixed_LDADD = $(GST_OBJ_LIBS)
|
|
fixed_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
intersect2_LDADD = $(GST_OBJ_LIBS)
|
|
intersect2_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
filtercaps_LDADD = $(GST_OBJ_LIBS)
|
|
filtercaps_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
eratosthenes_LDADD = $(GST_OBJ_LIBS)
|
|
ersthostenes_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
subtract_LDADD = $(GST_OBJ_LIBS)
|
|
subtract_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
sets_LDADD = $(GST_OBJ_LIBS)
|
|
sets_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
simplify_LDADD = $(GST_OBJ_LIBS)
|
|
simplify_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
renegotiate_LDADD = $(GST_OBJ_LIBS)
|
|
renegotiate_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
|
random_LDADD = $(GST_OBJ_LIBS)
|
|
random_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|