po/POTFILES: Remove gstspider.c.
authorAndy Wingo <wingo@pobox.com>
Tue, 29 Mar 2005 13:10:25 +0000 (13:10 +0000)
committerAndy Wingo <wingo@pobox.com>
Tue, 29 Mar 2005 13:10:25 +0000 (13:10 +0000)
Original commit message from CVS:
2005-03-29  Andy Wingo  <wingo@pobox.com>

* po/POTFILES: Remove gstspider.c.

* configure.ac (AC_OUTPUT): Add missing testsuite makefiles.

* docs/libs/gstreamer-libs-docs.sgml:
* docs/libs/gstreamer-libs-sections.txt: Remove the section on
bytestream.

* tests/complexity.c (main): Set the length of the preroll queue
on the sinks to prevent a lockup.

ChangeLog
configure.ac
docs/libs/Makefile.am
docs/libs/gstreamer-libs-docs.sgml
docs/libs/gstreamer-libs-sections.txt
tests/benchmarks/complexity.c
tests/complexity.c

index 3106632..48ad8a8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
 2005-03-29  Andy Wingo  <wingo@pobox.com>
 
+       * po/POTFILES: Remove gstspider.c.
+
+       * configure.ac (AC_OUTPUT): Add missing testsuite makefiles.
+
+       * docs/libs/gstreamer-libs-docs.sgml: 
+       * docs/libs/gstreamer-libs-sections.txt: Remove the section on
+       bytestream.
+
+       * tests/complexity.c (main): Set the length of the preroll queue
+       on the sinks to prevent a lockup.
+
        * libs/gst/dataprotocol/Makefile.am: 
        * libs/gst/dataprotocol/dataprotocol-test.c: Remove test, it's
        the same as the one in check/gst-libs/gdp.c.
index 0de6f80..e5ca119 100644 (file)
@@ -678,6 +678,7 @@ tests/sched/Makefile
 tests/threadstate/Makefile
 testsuite/Makefile
 testsuite/bins/Makefile
+testsuite/bytestream/Makefile
 testsuite/caps/Makefile
 testsuite/cleanup/Makefile
 testsuite/clock/Makefile
@@ -688,6 +689,7 @@ testsuite/elements/Makefile
 testsuite/ghostpads/Makefile
 testsuite/indexers/Makefile
 testsuite/negotiation/Makefile
+testsuite/pad/Makefile
 testsuite/parse/Makefile
 testsuite/plugin/Makefile
 testsuite/refcounting/Makefile
index 4ce0679..33eb71b 100644 (file)
@@ -12,7 +12,7 @@ include $(srcdir)/../upload.mak
 
 # generated basefiles
 #basefiles = \
-##             $(DOC_MODULE).types \
+#              $(DOC_MODULE).types \
 #              $(DOC_MODULE)-sections.txt \
 #              $(DOC_MODULE)-docs.sgml
 
index 6027b5a..21cf7c6 100644 (file)
@@ -36,7 +36,6 @@
     <para>
       GStreamer provides some standard libraries you can use to create plugins.
     </para>
-    &GstBytestream;
     &GstDataProtocol;
     &GstGetbits;
     <!-- has not yet been written
index 88b3f54..d331ecf 100644 (file)
@@ -89,28 +89,6 @@ swab32
 </SECTION>
 
 <SECTION>
-<FILE>gstbytestream</FILE>
-<INCLUDE>libs/bytestream/bytestream.h</INCLUDE>
-GstByteStream
-gst_bytestream_destroy
-gst_bytestream_flush
-gst_bytestream_flush_fast
-gst_bytestream_get_status
-gst_bytestream_get_timestamp
-gst_bytestream_length
-gst_bytestream_new
-gst_bytestream_peek
-gst_bytestream_peek_bytes
-gst_bytestream_print_status
-gst_bytestream_read
-gst_bytestream_reset
-gst_bytestream_seek
-gst_bytestream_size_hint
-gst_bytestream_tell
-<SUBSECTION Standard>
-</SECTION>
-
-<SECTION>
 <FILE>gstdataprotocol</FILE>
 <INCLUDE>libs/dataprotocol/dataprotocol.h</INCLUDE>
 GstDPHeaderFlag
index e6c4282..75b2097 100644 (file)
@@ -87,10 +87,12 @@ main (gint argc, gchar * argv[])
     src = (GstElement *) src_list->data;
     src_list = src_list->next;
 
-    if (i + max_this_level < n_elements)
+    if (i + max_this_level < n_elements) {
       e = gst_element_factory_make ("tee", NULL);
-    else
+    } else {
       e = gst_element_factory_make ("fakesink", NULL);
+      g_object_set (e, "preroll-queue-len", 1, NULL);
+    }
     g_object_set (e, "silent", TRUE, NULL);
     new_src_list = g_slist_prepend (new_src_list, e);
 
index e6c4282..75b2097 100644 (file)
@@ -87,10 +87,12 @@ main (gint argc, gchar * argv[])
     src = (GstElement *) src_list->data;
     src_list = src_list->next;
 
-    if (i + max_this_level < n_elements)
+    if (i + max_this_level < n_elements) {
       e = gst_element_factory_make ("tee", NULL);
-    else
+    } else {
       e = gst_element_factory_make ("fakesink", NULL);
+      g_object_set (e, "preroll-queue-len", 1, NULL);
+    }
     g_object_set (e, "silent", TRUE, NULL);
     new_src_list = g_slist_prepend (new_src_list, e);