configure.ac

Original commit message from CVS:
configure.ac
This commit is contained in:
Thomas Vander Stichele 2004-10-05 08:52:37 +00:00
parent 455df95b3e
commit c06e12f42f
7 changed files with 23 additions and 6 deletions

View file

@ -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):

View 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

View 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;

View 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;

View 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->

View 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;

View 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;