summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorwrobell <wrobell@ite.pl>2001-12-04 22:12:50 +0000
committerWim Taymans <wim.taymans@gmail.com>2001-12-04 22:12:50 +0000
commit08eaa1125984ab7573a9ea0b08afded5523b7e20 (patch)
tree66e4bb1975526105297a51717a5c0b1c1ffc7fed /testsuite
parentd0cfa2dabdb2c2ad81bf05401413b5e7f98e7181 (diff)
downloadgstreamer-08eaa1125984ab7573a9ea0b08afded5523b7e20.tar.gz
- some fixes to int2float making automake 1.5 happy (gst now requires automake1.5). It's still not perfect but it bui...
Original commit message from CVS: - added playondemand plugin by Leif Morgan Johnson <lmjohns3@eos.ncsu.edu> - some fixes to int2float - aplied a patch from wrobell <wrobell@ite.pl> that is a first attempt at making automake 1.5 happy (gst now requires automake1.5). It's still not perfect but it builds. - Made the schedulers plugable. The default scheduler now lives inside a plugin. - Added a new mpeg1/2 parser/demuxer. - Fixed some compiler warnings in the core libs. - substantial work to GstThread (hopefully less race conditions). simplified the code in GstThread a bit. A state change can now also happen in the thread context. - reworked the state semantics of a bin. it'll now automatically get the highest state of its children. - the autoplugger now nests the threads so that a state change failure of one thread doesn't make its upstream thread lock. - GstQueue refuses to go to PLAYING if the sinkpad is not connected. This way the queue will not wedge in the _get lock. - GstQueue unlocks its mutexes when going to PAUSED. - make sure that when all elements in a bin/thread go to PAUSED, the bin is set to PAUSED too. - make a parent bin wait for its children to PAUSE before ending the iteration with FALSE (EOS) - Some changes to GstPlay to deal with EOS. - aplied the latest patch from Zeenix to gstrtp. end result: GstPlay doesn't crash on EOS and the pipeline is now shut down properly.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/Makefile.am4
-rw-r--r--testsuite/bytestream/Makefile.am4
-rw-r--r--testsuite/capsnego/Makefile.am4
-rw-r--r--testsuite/dynparams/Makefile.am2
-rw-r--r--testsuite/plugin/Makefile.am4
-rw-r--r--testsuite/refcounting/Makefile.am4
6 files changed, 11 insertions, 11 deletions
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
index 74d5101862..e5d82ee00a 100644
--- a/testsuite/Makefile.am
+++ b/testsuite/Makefile.am
@@ -8,8 +8,8 @@ TESTS = $(testprogs)
check_PROGRAMS = $(testprogs)
# we have nothing but apps here, we can do this safely
-LIBS += $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS)
+LIBS = $(GST_LIBS)
+CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
DIST_SUBDIRS = refcounting capsnego plugin bytestream
diff --git a/testsuite/bytestream/Makefile.am b/testsuite/bytestream/Makefile.am
index 75aeed7915..1f617b231f 100644
--- a/testsuite/bytestream/Makefile.am
+++ b/testsuite/bytestream/Makefile.am
@@ -9,5 +9,5 @@ test1_LDFLAGS = -L$(top_builddir)/libs/bytestream/ -lgstbytestream
# we have nothing but apps here, we can do this safely
-LIBS += $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS)
+LIBS = $(GST_LIBS)
+CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
diff --git a/testsuite/capsnego/Makefile.am b/testsuite/capsnego/Makefile.am
index 6b1c466c7c..8dc74bb8c0 100644
--- a/testsuite/capsnego/Makefile.am
+++ b/testsuite/capsnego/Makefile.am
@@ -5,5 +5,5 @@ TESTS = $(testprogs)
check_PROGRAMS = $(testprogs)
# we have nothing but apps here, we can do this safely
-LIBS += $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS)
+LIBS = $(GST_LIBS)
+CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
diff --git a/testsuite/dynparams/Makefile.am b/testsuite/dynparams/Makefile.am
index f56298f1cc..bc7386fe1c 100644
--- a/testsuite/dynparams/Makefile.am
+++ b/testsuite/dynparams/Makefile.am
@@ -10,4 +10,4 @@ dparamstest_SOURCES = dparamstest.c
dparamstest_LDFLAGS = -L$(top_builddir)/libs/control/ -lgstcontrol
# we have nothing but apps here, we can do this safely
LIBS = $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS)
+CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
diff --git a/testsuite/plugin/Makefile.am b/testsuite/plugin/Makefile.am
index 9acef8767d..4cadb77724 100644
--- a/testsuite/plugin/Makefile.am
+++ b/testsuite/plugin/Makefile.am
@@ -16,5 +16,5 @@ TESTS = $(testprogs)
check_PROGRAMS = $(testprogs)
# we have nothing but apps here, we can do this safely
-LIBS += $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS)
+LIBS = $(GST_LIBS)
+CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
diff --git a/testsuite/refcounting/Makefile.am b/testsuite/refcounting/Makefile.am
index 06319a7597..3d98225aa8 100644
--- a/testsuite/refcounting/Makefile.am
+++ b/testsuite/refcounting/Makefile.am
@@ -16,6 +16,6 @@ EXTRA_DIST = thread.c object.c element.c element_pad.c bin.c
noinst_HEADERS = mem.h
# we have nothing but apps here, we can do this safely
-LIBS += $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS)
+LIBS = $(GST_LIBS)
+CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)