configure.ac
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 5 Oct 2004 08:52:37 +0000 (08:52 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 5 Oct 2004 08:52:37 +0000 (08:52 +0000)
Original commit message from CVS:
configure.ac

ChangeLog
configure.ac
gst/elements/gstfakesrc.c
gst/elements/gstidentity.c
gst/gstthread.c
plugins/elements/gstfakesrc.c
plugins/elements/gstidentity.c

index 3912863..add9277 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       reviewed by: <delete if not using a buddy>
+
+       * configure.ac:
+       * gst/elements/gstfakesrc.c:
+       * gst/elements/gstidentity.c:
+       * gst/gstthread.c:
+
 2004-10-01  Wim Taymans  <wim at fluendo dot com>
 
        * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
index 9f093af..f09af19 100644 (file)
@@ -3,7 +3,7 @@ AC_CANONICAL_TARGET
 
 dnl when going to/from release please set the nano (fourth number) right !
 dnl releases only do Wall, cvs and prerelease does Werror too
-AS_VERSION(gstreamer, GST_VERSION, 0, 8, 5, 2, GST_CVS="no", GST_CVS="yes")
+AS_VERSION(gstreamer, GST_VERSION, 0, 8, 5, 3, GST_CVS="no", GST_CVS="yes")
 
 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
 AM_MAINTAINER_MODE
index 3aad695..ef3c54d 100644 (file)
@@ -795,6 +795,7 @@ gst_fakesrc_get (GstPad * pad)
 {
   GstFakeSrc *src;
   GstBuffer *buf;
+  GstClockTime time;
 
   g_return_val_if_fail (pad != NULL, NULL);
 
@@ -832,7 +833,7 @@ gst_fakesrc_get (GstPad * pad)
   buf = gst_fakesrc_create_buffer (src);
   GST_BUFFER_OFFSET (buf) = src->buffer_count++;
 
-  GstClockTime time = GST_CLOCK_TIME_NONE;
+  time = GST_CLOCK_TIME_NONE;
 
   if (src->datarate > 0) {
     time = (src->bytes_sent * GST_SECOND) / src->datarate;
index 9e416cd..8f9f741 100644 (file)
@@ -326,6 +326,8 @@ gst_identity_chain (GstPad * pad, GstData * _data)
   }
 
   for (i = identity->duplicate; i; i--) {
+    GstClockTime time;
+
     if (!identity->silent) {
       g_free (identity->last_message);
       identity->last_message =
@@ -339,7 +341,7 @@ gst_identity_chain (GstPad * pad, GstData * _data)
       g_object_notify (G_OBJECT (identity), "last-message");
     }
 
-    GstClockTime time = GST_BUFFER_TIMESTAMP (buf);
+    time = GST_BUFFER_TIMESTAMP (buf);
 
     if (identity->datarate > 0) {
       time = identity->bytes_handled * GST_SECOND / identity->datarate;
index 3f07c5b..2a538de 100644 (file)
@@ -491,9 +491,11 @@ gst_thread_change_state (GstElement * element)
     }
     case GST_STATE_PLAYING_TO_PAUSED:
     {
+      GList *elements;
+
       GST_FLAG_UNSET (thread, GST_THREAD_STATE_SPINNING);
 
-      GList *elements = (GList *) gst_bin_get_list (GST_BIN (thread));
+      elements = (GList *) gst_bin_get_list (GST_BIN (thread));
 
       while (elements) {
         gst_element_disable_threadsafe_properties ((GstElement *) elements->
index 3aad695..ef3c54d 100644 (file)
@@ -795,6 +795,7 @@ gst_fakesrc_get (GstPad * pad)
 {
   GstFakeSrc *src;
   GstBuffer *buf;
+  GstClockTime time;
 
   g_return_val_if_fail (pad != NULL, NULL);
 
@@ -832,7 +833,7 @@ gst_fakesrc_get (GstPad * pad)
   buf = gst_fakesrc_create_buffer (src);
   GST_BUFFER_OFFSET (buf) = src->buffer_count++;
 
-  GstClockTime time = GST_CLOCK_TIME_NONE;
+  time = GST_CLOCK_TIME_NONE;
 
   if (src->datarate > 0) {
     time = (src->bytes_sent * GST_SECOND) / src->datarate;
index 9e416cd..8f9f741 100644 (file)
@@ -326,6 +326,8 @@ gst_identity_chain (GstPad * pad, GstData * _data)
   }
 
   for (i = identity->duplicate; i; i--) {
+    GstClockTime time;
+
     if (!identity->silent) {
       g_free (identity->last_message);
       identity->last_message =
@@ -339,7 +341,7 @@ gst_identity_chain (GstPad * pad, GstData * _data)
       g_object_notify (G_OBJECT (identity), "last-message");
     }
 
-    GstClockTime time = GST_BUFFER_TIMESTAMP (buf);
+    time = GST_BUFFER_TIMESTAMP (buf);
 
     if (identity->datarate > 0) {
       time = identity->bytes_handled * GST_SECOND / identity->datarate;