mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
configure.ac
Original commit message from CVS: configure.ac
This commit is contained in:
parent
455df95b3e
commit
c06e12f42f
7 changed files with 23 additions and 6 deletions
|
@ -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>
|
2004-10-01 Wim Taymans <wim at fluendo dot com>
|
||||||
|
|
||||||
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
|
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
|
||||||
|
|
|
@ -3,7 +3,7 @@ AC_CANONICAL_TARGET
|
||||||
|
|
||||||
dnl when going to/from release please set the nano (fourth number) right !
|
dnl when going to/from release please set the nano (fourth number) right !
|
||||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
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
|
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
|
@ -795,6 +795,7 @@ gst_fakesrc_get (GstPad * pad)
|
||||||
{
|
{
|
||||||
GstFakeSrc *src;
|
GstFakeSrc *src;
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
|
GstClockTime time;
|
||||||
|
|
||||||
g_return_val_if_fail (pad != NULL, NULL);
|
g_return_val_if_fail (pad != NULL, NULL);
|
||||||
|
|
||||||
|
@ -832,7 +833,7 @@ gst_fakesrc_get (GstPad * pad)
|
||||||
buf = gst_fakesrc_create_buffer (src);
|
buf = gst_fakesrc_create_buffer (src);
|
||||||
GST_BUFFER_OFFSET (buf) = src->buffer_count++;
|
GST_BUFFER_OFFSET (buf) = src->buffer_count++;
|
||||||
|
|
||||||
GstClockTime time = GST_CLOCK_TIME_NONE;
|
time = GST_CLOCK_TIME_NONE;
|
||||||
|
|
||||||
if (src->datarate > 0) {
|
if (src->datarate > 0) {
|
||||||
time = (src->bytes_sent * GST_SECOND) / src->datarate;
|
time = (src->bytes_sent * GST_SECOND) / src->datarate;
|
||||||
|
|
|
@ -326,6 +326,8 @@ gst_identity_chain (GstPad * pad, GstData * _data)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = identity->duplicate; i; i--) {
|
for (i = identity->duplicate; i; i--) {
|
||||||
|
GstClockTime time;
|
||||||
|
|
||||||
if (!identity->silent) {
|
if (!identity->silent) {
|
||||||
g_free (identity->last_message);
|
g_free (identity->last_message);
|
||||||
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");
|
g_object_notify (G_OBJECT (identity), "last-message");
|
||||||
}
|
}
|
||||||
|
|
||||||
GstClockTime time = GST_BUFFER_TIMESTAMP (buf);
|
time = GST_BUFFER_TIMESTAMP (buf);
|
||||||
|
|
||||||
if (identity->datarate > 0) {
|
if (identity->datarate > 0) {
|
||||||
time = identity->bytes_handled * GST_SECOND / identity->datarate;
|
time = identity->bytes_handled * GST_SECOND / identity->datarate;
|
||||||
|
|
|
@ -491,9 +491,11 @@ gst_thread_change_state (GstElement * element)
|
||||||
}
|
}
|
||||||
case GST_STATE_PLAYING_TO_PAUSED:
|
case GST_STATE_PLAYING_TO_PAUSED:
|
||||||
{
|
{
|
||||||
|
GList *elements;
|
||||||
|
|
||||||
GST_FLAG_UNSET (thread, GST_THREAD_STATE_SPINNING);
|
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) {
|
while (elements) {
|
||||||
gst_element_disable_threadsafe_properties ((GstElement *) elements->
|
gst_element_disable_threadsafe_properties ((GstElement *) elements->
|
||||||
|
|
|
@ -795,6 +795,7 @@ gst_fakesrc_get (GstPad * pad)
|
||||||
{
|
{
|
||||||
GstFakeSrc *src;
|
GstFakeSrc *src;
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
|
GstClockTime time;
|
||||||
|
|
||||||
g_return_val_if_fail (pad != NULL, NULL);
|
g_return_val_if_fail (pad != NULL, NULL);
|
||||||
|
|
||||||
|
@ -832,7 +833,7 @@ gst_fakesrc_get (GstPad * pad)
|
||||||
buf = gst_fakesrc_create_buffer (src);
|
buf = gst_fakesrc_create_buffer (src);
|
||||||
GST_BUFFER_OFFSET (buf) = src->buffer_count++;
|
GST_BUFFER_OFFSET (buf) = src->buffer_count++;
|
||||||
|
|
||||||
GstClockTime time = GST_CLOCK_TIME_NONE;
|
time = GST_CLOCK_TIME_NONE;
|
||||||
|
|
||||||
if (src->datarate > 0) {
|
if (src->datarate > 0) {
|
||||||
time = (src->bytes_sent * GST_SECOND) / src->datarate;
|
time = (src->bytes_sent * GST_SECOND) / src->datarate;
|
||||||
|
|
|
@ -326,6 +326,8 @@ gst_identity_chain (GstPad * pad, GstData * _data)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = identity->duplicate; i; i--) {
|
for (i = identity->duplicate; i; i--) {
|
||||||
|
GstClockTime time;
|
||||||
|
|
||||||
if (!identity->silent) {
|
if (!identity->silent) {
|
||||||
g_free (identity->last_message);
|
g_free (identity->last_message);
|
||||||
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");
|
g_object_notify (G_OBJECT (identity), "last-message");
|
||||||
}
|
}
|
||||||
|
|
||||||
GstClockTime time = GST_BUFFER_TIMESTAMP (buf);
|
time = GST_BUFFER_TIMESTAMP (buf);
|
||||||
|
|
||||||
if (identity->datarate > 0) {
|
if (identity->datarate > 0) {
|
||||||
time = identity->bytes_handled * GST_SECOND / identity->datarate;
|
time = identity->bytes_handled * GST_SECOND / identity->datarate;
|
||||||
|
|
Loading…
Reference in a new issue