2005-11-20 19:11:09 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* gstsegment.c: GstSegment subsystem
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-06-14 12:56:32 +00:00
|
|
|
#include "gst_private.h"
|
2005-11-20 19:11:09 +00:00
|
|
|
|
2009-06-09 08:23:23 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2005-11-20 19:11:09 +00:00
|
|
|
#include "gstutils.h"
|
|
|
|
#include "gstsegment.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gstsegment
|
|
|
|
* @short_description: Structure describing the configured region of interest
|
|
|
|
* in a media file.
|
|
|
|
* @see_also: #GstEvent
|
|
|
|
*
|
|
|
|
* This helper structure holds the relevant values for tracking the region of
|
2011-05-13 16:07:24 +00:00
|
|
|
* interest in a media file, called a segment.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
2005-12-12 12:48:35 +00:00
|
|
|
* The structure can be used for two purposes:
|
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem><para>performing seeks (handling seek events)</para></listitem>
|
|
|
|
* <listitem><para>tracking playback regions (handling newsegment events)</para></listitem>
|
|
|
|
* </itemizedlist>
|
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* The segment is usually configured by the application with a seek event which
|
2005-12-12 12:48:35 +00:00
|
|
|
* is propagated upstream and eventually handled by an element that performs the seek.
|
|
|
|
*
|
|
|
|
* The configured segment is then propagated back downstream with a newsegment event.
|
|
|
|
* This information is then used to clip media to the segment boundaries.
|
|
|
|
*
|
|
|
|
* A segment structure is initialized with gst_segment_init(), which takes a #GstFormat
|
|
|
|
* that will be used as the format of the segment values. The segment will be configured
|
|
|
|
* with a start value of 0 and a stop/duration of -1, which is undefined. The default
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* rate and applied_rate is 1.0.
|
2005-12-12 12:48:35 +00:00
|
|
|
*
|
|
|
|
* If the segment is used for managing seeks, the segment duration should be set with
|
|
|
|
* gst_segment_set_duration(). The public duration field contains the duration of the
|
2011-05-13 16:07:24 +00:00
|
|
|
* segment. When using the segment for seeking, the start and time members should
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* normally be left to their default 0 value. The stop position is left to -1 unless
|
|
|
|
* explicitly configured to a different value after a seek event.
|
2005-12-12 12:48:35 +00:00
|
|
|
*
|
|
|
|
* The current position in the segment should be set with the gst_segment_set_last_stop().
|
|
|
|
* The public last_stop field contains the last set stop position in the segment.
|
|
|
|
*
|
|
|
|
* For elements that perform seeks, the current segment should be updated with the
|
|
|
|
* gst_segment_set_seek() and the values from the seek event. This method will update
|
2007-05-17 11:05:22 +00:00
|
|
|
* all the segment fields. The last_stop field will contain the new playback position.
|
2005-12-12 12:48:35 +00:00
|
|
|
* If the cur_type was different from GST_SEEK_TYPE_NONE, playback continues from
|
2007-05-17 11:05:22 +00:00
|
|
|
* the last_stop position, possibly with updated flags or rate.
|
2005-12-12 12:48:35 +00:00
|
|
|
*
|
Documentation updates.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstbin.c: (bin_bus_handler), (gst_bin_handle_message_func):
* gst/gstbin.h:
* gst/gstbus.c: (gst_bus_class_init):
* gst/gstbus.h:
* gst/gstclock.c:
* gst/gstelement.c: (gst_element_set_locked_state):
* gst/gstsegment.c:
Documentation updates.
* gst/gstpipeline.c: (gst_pipeline_get_type),
(gst_pipeline_class_init), (gst_pipeline_init),
(gst_pipeline_dispose), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_send_event), (gst_pipeline_change_state),
(gst_pipeline_provide_clock_func), (gst_pipeline_set_delay),
(gst_pipeline_get_delay):
* gst/gstpipeline.h:
Added methods for setting the delay.
API: gst_pipeline_set_delay
API: gst_pipeline_get_delay
Add pipeline debug category
Various cleanups.
Updated docs.
Don't reset stream time when seek failed.
2006-03-13 11:04:38 +00:00
|
|
|
* For elements that want to use #GstSegment to track the playback region, use
|
2005-12-12 12:48:35 +00:00
|
|
|
* gst_segment_set_newsegment() to update the segment fields with the information from
|
|
|
|
* the newsegment event. The gst_segment_clip() method can be used to check and clip
|
|
|
|
* the media data to the segment boundaries.
|
|
|
|
*
|
|
|
|
* For elements that want to synchronize to the pipeline clock, gst_segment_to_running_time()
|
|
|
|
* can be used to convert a timestamp to a value that can be used to synchronize
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* to the clock. This function takes into account all accumulated segments as well as
|
|
|
|
* any rate or applied_rate conversions.
|
2005-12-12 12:48:35 +00:00
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* For elements that need to perform operations on media data in stream_time,
|
2005-12-12 12:48:35 +00:00
|
|
|
* gst_segment_to_stream_time() can be used to convert a timestamp and the segment
|
|
|
|
* info to stream time (which is always between 0 and the duration of the stream).
|
|
|
|
*
|
2007-05-17 11:05:22 +00:00
|
|
|
* Last reviewed on 2007-05-17 (0.10.13)
|
2005-11-20 19:11:09 +00:00
|
|
|
*/
|
|
|
|
|
2008-04-09 22:37:22 +00:00
|
|
|
/**
|
|
|
|
* gst_segment_copy:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @segment: (transfer none): a #GstSegment
|
2008-04-09 22:37:22 +00:00
|
|
|
*
|
2008-04-23 07:08:53 +00:00
|
|
|
* Create a copy of given @segment.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Free-function: gst_segment_free
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GstSegment, free with gst_segment_free().
|
2008-04-09 22:37:22 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.20
|
|
|
|
*/
|
|
|
|
GstSegment *
|
2011-05-13 16:07:24 +00:00
|
|
|
gst_segment_copy (const GstSegment * segment)
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
{
|
|
|
|
GstSegment *result = NULL;
|
|
|
|
|
|
|
|
if (segment) {
|
2009-04-03 11:46:18 +00:00
|
|
|
result = (GstSegment *) g_slice_copy (sizeof (GstSegment), segment);
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
}
|
2006-06-05 12:55:58 +00:00
|
|
|
return result;
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
}
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
void
|
|
|
|
gst_segment_copy_into (const GstSegment * src, GstSegment * dest)
|
|
|
|
{
|
|
|
|
memcpy (dest, src, sizeof (GstSegment));
|
|
|
|
}
|
|
|
|
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
GType
|
|
|
|
gst_segment_get_type (void)
|
|
|
|
{
|
|
|
|
static GType gst_segment_type = 0;
|
|
|
|
|
2006-02-28 10:52:02 +00:00
|
|
|
if (G_UNLIKELY (gst_segment_type == 0)) {
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
gst_segment_type = g_boxed_type_register_static ("GstSegment",
|
|
|
|
(GBoxedCopyFunc) gst_segment_copy, (GBoxedFreeFunc) gst_segment_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
return gst_segment_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_new:
|
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* Allocate a new #GstSegment structure and initialize it using
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
* gst_segment_init().
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Free-function: gst_segment_free
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GstSegment, free with gst_segment_free().
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
*/
|
|
|
|
GstSegment *
|
|
|
|
gst_segment_new (void)
|
|
|
|
{
|
|
|
|
GstSegment *result;
|
|
|
|
|
2008-04-01 13:55:20 +00:00
|
|
|
result = g_slice_new0 (GstSegment);
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
gst_segment_init (result, GST_FORMAT_UNDEFINED);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_free:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @segment: (in) (transfer full): a #GstSegment
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
*
|
|
|
|
* Free the allocated segment @segment.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_segment_free (GstSegment * segment)
|
|
|
|
{
|
2008-04-01 13:55:20 +00:00
|
|
|
g_slice_free (GstSegment, segment);
|
gst/gstsegment.*: Make binding friendly.
Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
(gst_segment_new), (gst_segment_free), (gst_segment_init),
(gst_segment_set_duration), (gst_segment_set_last_stop),
(gst_segment_set_seek), (gst_segment_set_newsegment),
(gst_segment_to_stream_time), (gst_segment_to_running_time),
(gst_segment_clip):
* gst/gstsegment.h:
Make binding friendly.
2005-11-21 18:53:06 +00:00
|
|
|
}
|
|
|
|
|
2005-11-20 19:11:09 +00:00
|
|
|
/**
|
|
|
|
* gst_segment_init:
|
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @format: the format of the segment.
|
|
|
|
*
|
2005-12-12 12:48:35 +00:00
|
|
|
* The start/last_stop positions are set to 0 and the stop/duration
|
|
|
|
* fields are set to -1 (unknown). The default rate of 1.0 and no
|
|
|
|
* flags are set.
|
|
|
|
*
|
|
|
|
* Initialize @segment to its default values.
|
2005-11-20 19:11:09 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_segment_init (GstSegment * segment, GstFormat format)
|
|
|
|
{
|
|
|
|
g_return_if_fail (segment != NULL);
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
segment->flags = 0;
|
2005-11-20 19:11:09 +00:00
|
|
|
segment->rate = 1.0;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
segment->applied_rate = 1.0;
|
2005-11-20 19:11:09 +00:00
|
|
|
segment->format = format;
|
2011-05-13 16:07:24 +00:00
|
|
|
segment->base = 0;
|
2005-11-20 19:11:09 +00:00
|
|
|
segment->start = 0;
|
|
|
|
segment->stop = -1;
|
|
|
|
segment->time = 0;
|
2011-05-13 16:07:24 +00:00
|
|
|
segment->position = 0;
|
2005-11-20 19:11:09 +00:00
|
|
|
segment->duration = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-05-13 16:07:24 +00:00
|
|
|
* gst_segment_do_seek:
|
2005-11-20 19:11:09 +00:00
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @rate: the rate of the segment.
|
|
|
|
* @format: the format of the segment.
|
2011-05-13 16:07:24 +00:00
|
|
|
* @flags: the segment flags for the segment
|
2006-10-09 16:33:29 +00:00
|
|
|
* @start_type: the seek method
|
|
|
|
* @start: the seek start value
|
2005-11-20 19:11:09 +00:00
|
|
|
* @stop_type: the seek method
|
|
|
|
* @stop: the seek stop value
|
2011-05-13 16:07:24 +00:00
|
|
|
* @update: boolean holding whether position was updated.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
2006-10-09 16:33:29 +00:00
|
|
|
* Update the segment structure with the field values of a seek event (see
|
|
|
|
* gst_event_new_seek()).
|
2005-12-12 12:48:35 +00:00
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* After calling this method, the segment field position and time will
|
2006-10-09 16:33:29 +00:00
|
|
|
* contain the requested new position in the segment. The new requested
|
2011-05-13 16:07:24 +00:00
|
|
|
* position in the segment depends on @rate and @start_type and @stop_type.
|
2006-10-09 16:33:29 +00:00
|
|
|
*
|
|
|
|
* For positive @rate, the new position in the segment is the new @segment
|
|
|
|
* start field when it was updated with a @start_type different from
|
|
|
|
* #GST_SEEK_TYPE_NONE. If no update was performed on @segment start position
|
2011-05-13 16:07:24 +00:00
|
|
|
* (#GST_SEEK_TYPE_NONE), @start is ignored and @segment position is
|
2006-10-09 16:33:29 +00:00
|
|
|
* unmodified.
|
|
|
|
*
|
|
|
|
* For negative @rate, the new position in the segment is the new @segment
|
|
|
|
* stop field when it was updated with a @stop_type different from
|
|
|
|
* #GST_SEEK_TYPE_NONE. If no stop was previously configured in the segment, the
|
|
|
|
* duration of the segment will be used to update the stop position.
|
|
|
|
* If no update was performed on @segment stop position (#GST_SEEK_TYPE_NONE),
|
2011-05-13 16:07:24 +00:00
|
|
|
* @stop is ignored and @segment position is unmodified.
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
*
|
|
|
|
* The applied rate of the segment will be set to 1.0 by default.
|
|
|
|
* If the caller can apply a rate change, it should update @segment
|
|
|
|
* rate and applied_rate after calling this function.
|
2007-02-13 15:34:15 +00:00
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* @update will be set to TRUE if a seek should be performed to the segment
|
|
|
|
* position field. This field can be FALSE if, for example, only the @rate
|
2007-02-13 15:34:15 +00:00
|
|
|
* has been changed but not the playback position.
|
2011-05-13 16:07:24 +00:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if the seek could be performed.
|
2005-11-20 19:11:09 +00:00
|
|
|
*/
|
2011-05-13 16:07:24 +00:00
|
|
|
gboolean
|
|
|
|
gst_segment_do_seek (GstSegment * segment, gdouble rate,
|
2005-11-20 19:11:09 +00:00
|
|
|
GstFormat format, GstSeekFlags flags,
|
2011-05-13 16:07:24 +00:00
|
|
|
GstSeekType start_type, guint64 start,
|
|
|
|
GstSeekType stop_type, guint64 stop, gboolean * update)
|
2005-11-20 19:11:09 +00:00
|
|
|
{
|
|
|
|
gboolean update_stop, update_start;
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64 position, base;
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
g_return_val_if_fail (rate != 0.0, FALSE);
|
|
|
|
g_return_val_if_fail (segment != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (segment->format == format, FALSE);
|
2005-11-20 19:11:09 +00:00
|
|
|
|
2007-02-13 15:34:15 +00:00
|
|
|
update_start = update_stop = TRUE;
|
2005-11-20 19:11:09 +00:00
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
position = segment->position;
|
|
|
|
|
|
|
|
if (flags & GST_SEEK_FLAG_FLUSH) {
|
|
|
|
/* flush resets the running_time */
|
|
|
|
base = 0;
|
|
|
|
} else {
|
|
|
|
base = gst_segment_to_running_time (segment, format, position);
|
|
|
|
}
|
|
|
|
|
2007-12-19 12:48:18 +00:00
|
|
|
/* segment->start is never invalid */
|
2006-10-09 16:33:29 +00:00
|
|
|
switch (start_type) {
|
2005-11-20 19:11:09 +00:00
|
|
|
case GST_SEEK_TYPE_NONE:
|
2007-12-19 12:48:18 +00:00
|
|
|
/* no update to segment, take previous start */
|
2006-10-09 16:33:29 +00:00
|
|
|
start = segment->start;
|
2005-11-20 19:11:09 +00:00
|
|
|
update_start = FALSE;
|
|
|
|
break;
|
|
|
|
case GST_SEEK_TYPE_SET:
|
2006-10-18 13:27:39 +00:00
|
|
|
/* start holds desired position, map -1 to the start */
|
|
|
|
if (start == -1)
|
|
|
|
start = 0;
|
2005-11-20 19:11:09 +00:00
|
|
|
break;
|
|
|
|
case GST_SEEK_TYPE_CUR:
|
2011-05-17 15:51:58 +00:00
|
|
|
{
|
|
|
|
gint64 sstart = (gint64) start;
|
2007-12-19 12:48:18 +00:00
|
|
|
/* add start to currently configured segment */
|
2011-05-17 15:51:58 +00:00
|
|
|
if (sstart > 0 || segment->start > -sstart)
|
|
|
|
start = segment->start + start;
|
|
|
|
else
|
|
|
|
start = 0;
|
2005-11-20 19:11:09 +00:00
|
|
|
break;
|
2011-05-17 15:51:58 +00:00
|
|
|
}
|
2005-11-20 19:11:09 +00:00
|
|
|
case GST_SEEK_TYPE_END:
|
|
|
|
if (segment->duration != -1) {
|
2006-10-09 16:33:29 +00:00
|
|
|
/* add start to total length */
|
|
|
|
start = segment->duration + start;
|
2005-11-20 19:11:09 +00:00
|
|
|
} else {
|
|
|
|
/* no update if duration unknown */
|
2006-10-09 16:33:29 +00:00
|
|
|
start = segment->start;
|
2005-11-20 19:11:09 +00:00
|
|
|
update_start = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* bring in sane range */
|
|
|
|
if (segment->duration != -1)
|
2011-05-17 15:51:58 +00:00
|
|
|
start = MIN (start, segment->duration);
|
2005-11-20 19:11:09 +00:00
|
|
|
else
|
2006-10-09 16:33:29 +00:00
|
|
|
start = MAX (start, 0);
|
2005-11-20 19:11:09 +00:00
|
|
|
|
|
|
|
/* stop can be -1 if we have not configured a stop. */
|
|
|
|
switch (stop_type) {
|
|
|
|
case GST_SEEK_TYPE_NONE:
|
|
|
|
stop = segment->stop;
|
|
|
|
update_stop = FALSE;
|
|
|
|
break;
|
|
|
|
case GST_SEEK_TYPE_SET:
|
2011-05-17 15:51:58 +00:00
|
|
|
/* stop holds required value */
|
2005-11-20 19:11:09 +00:00
|
|
|
break;
|
|
|
|
case GST_SEEK_TYPE_CUR:
|
2007-12-19 12:48:18 +00:00
|
|
|
if (segment->stop != -1) {
|
2011-05-17 15:51:58 +00:00
|
|
|
gint64 sstop = (gint64) stop;
|
|
|
|
if (sstop > 0 || segment->stop > -sstop)
|
|
|
|
stop = segment->stop + stop;
|
|
|
|
else
|
|
|
|
stop = 0;
|
2007-12-19 12:48:18 +00:00
|
|
|
} else
|
2005-11-20 19:11:09 +00:00
|
|
|
stop = -1;
|
|
|
|
break;
|
|
|
|
case GST_SEEK_TYPE_END:
|
2007-12-19 12:48:18 +00:00
|
|
|
if (segment->duration != -1) {
|
2005-11-20 19:11:09 +00:00
|
|
|
stop = segment->duration + stop;
|
2007-12-19 12:48:18 +00:00
|
|
|
} else {
|
2005-11-20 19:11:09 +00:00
|
|
|
stop = segment->stop;
|
|
|
|
update_stop = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we have a valid stop time, make sure it is clipped */
|
|
|
|
if (stop != -1) {
|
|
|
|
if (segment->duration != -1)
|
|
|
|
stop = CLAMP (stop, 0, segment->duration);
|
|
|
|
else
|
|
|
|
stop = MAX (stop, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we can't have stop before start */
|
2011-05-13 16:07:24 +00:00
|
|
|
if (stop != -1) {
|
|
|
|
if (start > stop) {
|
|
|
|
g_return_val_if_fail (start <= stop, FALSE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2005-11-20 19:11:09 +00:00
|
|
|
|
|
|
|
segment->rate = rate;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
segment->applied_rate = 1.0;
|
2011-05-13 16:07:24 +00:00
|
|
|
segment->base = base;
|
2005-11-20 19:11:09 +00:00
|
|
|
segment->flags = flags;
|
2006-10-09 16:33:29 +00:00
|
|
|
segment->start = start;
|
2008-02-29 15:22:34 +00:00
|
|
|
segment->stop = stop;
|
|
|
|
segment->time = start;
|
|
|
|
|
2006-10-09 16:33:29 +00:00
|
|
|
if (update_start && rate > 0.0) {
|
2011-05-13 16:07:24 +00:00
|
|
|
position = start;
|
2006-10-09 16:33:29 +00:00
|
|
|
}
|
|
|
|
if (update_stop && rate < 0.0) {
|
2006-10-18 13:27:39 +00:00
|
|
|
if (stop != -1)
|
2011-05-13 16:07:24 +00:00
|
|
|
position = stop;
|
2006-10-18 13:27:39 +00:00
|
|
|
else {
|
|
|
|
if (segment->duration != -1)
|
2011-05-13 16:07:24 +00:00
|
|
|
position = segment->duration;
|
2006-10-18 13:27:39 +00:00
|
|
|
else
|
2011-05-13 16:07:24 +00:00
|
|
|
position = 0;
|
2006-10-18 13:27:39 +00:00
|
|
|
}
|
2005-12-12 12:48:35 +00:00
|
|
|
}
|
2011-05-13 16:07:24 +00:00
|
|
|
/* set update arg to reflect update of position */
|
2007-02-13 15:34:15 +00:00
|
|
|
if (update)
|
2011-05-13 16:07:24 +00:00
|
|
|
*update = position != segment->position;
|
2007-02-13 15:34:15 +00:00
|
|
|
|
|
|
|
/* update new position */
|
2011-05-13 16:07:24 +00:00
|
|
|
segment->position = position;
|
2006-01-12 22:04:58 +00:00
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
return TRUE;
|
2005-11-20 19:11:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_to_stream_time:
|
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @format: the format of the segment.
|
|
|
|
* @position: the position in the segment
|
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* Translate @position to stream time using the currently configured
|
2006-04-10 10:46:44 +00:00
|
|
|
* segment. The @position value must be between @segment start and
|
2011-05-13 16:07:24 +00:00
|
|
|
* stop value.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
|
|
|
* This function is typically used by elements that need to operate on
|
|
|
|
* the stream time of the buffers it receives, such as effect plugins.
|
2011-05-13 16:07:24 +00:00
|
|
|
* In those use cases, @position is typically the buffer timestamp or
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* clock time that one wants to convert to the stream time.
|
2011-05-13 16:07:24 +00:00
|
|
|
* The stream time is always between 0 and the total duration of the
|
|
|
|
* media stream.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
2006-04-10 10:46:44 +00:00
|
|
|
* Returns: the position in stream_time or -1 when an invalid position
|
|
|
|
* was given.
|
2005-11-20 19:11:09 +00:00
|
|
|
*/
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64
|
|
|
|
gst_segment_to_stream_time (const GstSegment * segment, GstFormat format,
|
|
|
|
guint64 position)
|
2005-11-20 19:11:09 +00:00
|
|
|
{
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64 result, start, stop, time;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
gdouble abs_applied_rate;
|
2005-11-20 19:11:09 +00:00
|
|
|
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
/* format does not matter for -1 */
|
2006-06-12 09:29:49 +00:00
|
|
|
if (G_UNLIKELY (position == -1))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
2010-10-20 15:12:29 +00:00
|
|
|
g_return_val_if_fail (segment != NULL, -1);
|
2011-05-13 16:07:24 +00:00
|
|
|
g_return_val_if_fail (segment->format == format, -1);
|
2007-11-09 11:56:41 +00:00
|
|
|
|
|
|
|
/* if we have the position for the same format as the segment, we can compare
|
|
|
|
* the start and stop values, otherwise we assume 0 and -1 */
|
2009-06-03 17:06:30 +00:00
|
|
|
if (G_LIKELY (segment->format == format)) {
|
2007-11-09 11:56:41 +00:00
|
|
|
start = segment->start;
|
|
|
|
stop = segment->stop;
|
|
|
|
time = segment->time;
|
|
|
|
} else {
|
|
|
|
start = 0;
|
|
|
|
stop = -1;
|
|
|
|
time = 0;
|
|
|
|
}
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
/* outside of the segment boundary stop */
|
2007-11-09 11:56:41 +00:00
|
|
|
if (G_UNLIKELY (stop != -1 && position > stop))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
/* before the segment boundary */
|
2007-11-09 11:56:41 +00:00
|
|
|
if (G_UNLIKELY (position < start))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* time must be known */
|
2007-11-09 11:56:41 +00:00
|
|
|
if (G_UNLIKELY (time == -1))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* bring to uncorrected position in segment */
|
2007-11-09 11:56:41 +00:00
|
|
|
result = position - start;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
|
|
|
|
abs_applied_rate = ABS (segment->applied_rate);
|
|
|
|
|
|
|
|
/* correct for applied rate if needed */
|
2009-06-03 17:06:30 +00:00
|
|
|
if (G_UNLIKELY (abs_applied_rate != 1.0))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
result *= abs_applied_rate;
|
|
|
|
|
|
|
|
/* add or subtract from segment time based on applied rate */
|
2009-06-03 17:06:30 +00:00
|
|
|
if (G_LIKELY (segment->applied_rate > 0.0)) {
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
/* correct for segment time */
|
2007-11-09 11:56:41 +00:00
|
|
|
result += time;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
} else {
|
2008-02-29 15:22:34 +00:00
|
|
|
/* correct for segment time, clamp at 0. Streams with a negative
|
|
|
|
* applied_rate have timestamps between start and stop, as usual, but have
|
|
|
|
* the time member starting high and going backwards. */
|
2009-06-03 17:06:30 +00:00
|
|
|
if (G_LIKELY (time > result))
|
2007-11-09 11:56:41 +00:00
|
|
|
result = time - result;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
else
|
|
|
|
result = 0;
|
|
|
|
}
|
2005-11-20 19:11:09 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_to_running_time:
|
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @format: the format of the segment.
|
|
|
|
* @position: the position in the segment
|
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* Translate @position to the total running time using the currently configured
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* and previously accumulated segments. Position is a value between @segment
|
|
|
|
* start and stop time.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
|
|
|
* This function is typically used by elements that need to synchronize to the
|
2006-02-02 11:59:27 +00:00
|
|
|
* global clock in a pipeline. The runnning time is a constantly increasing value
|
Documentation updates.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstbin.c: (bin_bus_handler), (gst_bin_handle_message_func):
* gst/gstbin.h:
* gst/gstbus.c: (gst_bus_class_init):
* gst/gstbus.h:
* gst/gstclock.c:
* gst/gstelement.c: (gst_element_set_locked_state):
* gst/gstsegment.c:
Documentation updates.
* gst/gstpipeline.c: (gst_pipeline_get_type),
(gst_pipeline_class_init), (gst_pipeline_init),
(gst_pipeline_dispose), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_send_event), (gst_pipeline_change_state),
(gst_pipeline_provide_clock_func), (gst_pipeline_set_delay),
(gst_pipeline_get_delay):
* gst/gstpipeline.h:
Added methods for setting the delay.
API: gst_pipeline_set_delay
API: gst_pipeline_get_delay
Add pipeline debug category
Various cleanups.
Updated docs.
Don't reset stream time when seek failed.
2006-03-13 11:04:38 +00:00
|
|
|
* starting from 0. When gst_segment_init() is called, this value will reset to
|
|
|
|
* 0.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* This function returns -1 if the position is outside of @segment start and stop.
|
|
|
|
*
|
|
|
|
* Returns: the position as the total running time or -1 when an invalid position
|
|
|
|
* was given.
|
2005-11-20 19:11:09 +00:00
|
|
|
*/
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64
|
|
|
|
gst_segment_to_running_time (const GstSegment * segment, GstFormat format,
|
|
|
|
guint64 position)
|
2005-11-20 19:11:09 +00:00
|
|
|
{
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64 result;
|
|
|
|
guint64 start, stop, base;
|
2011-05-09 14:39:13 +00:00
|
|
|
gdouble abs_rate;
|
2005-11-20 19:11:09 +00:00
|
|
|
|
2006-06-12 09:29:49 +00:00
|
|
|
if (G_UNLIKELY (position == -1))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
2010-10-20 15:12:29 +00:00
|
|
|
g_return_val_if_fail (segment != NULL, -1);
|
2011-05-13 16:07:24 +00:00
|
|
|
g_return_val_if_fail (segment->format == format, -1);
|
2007-11-09 11:56:41 +00:00
|
|
|
|
|
|
|
/* if we have the position for the same format as the segment, we can compare
|
|
|
|
* the start and stop values, otherwise we assume 0 and -1 */
|
2009-06-03 17:06:30 +00:00
|
|
|
if (G_LIKELY (segment->format == format)) {
|
2007-11-09 11:56:41 +00:00
|
|
|
start = segment->start;
|
|
|
|
stop = segment->stop;
|
2011-05-13 16:07:24 +00:00
|
|
|
base = segment->base;
|
2007-11-09 11:56:41 +00:00
|
|
|
} else {
|
|
|
|
start = 0;
|
|
|
|
stop = -1;
|
2011-05-13 16:07:24 +00:00
|
|
|
base = 0;
|
2007-11-09 11:56:41 +00:00
|
|
|
}
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
/* before the segment boundary */
|
2007-11-09 11:56:41 +00:00
|
|
|
if (G_UNLIKELY (position < start))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
2009-06-03 17:06:30 +00:00
|
|
|
if (G_LIKELY (segment->rate > 0.0)) {
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
/* outside of the segment boundary stop */
|
2007-11-09 11:56:41 +00:00
|
|
|
if (G_UNLIKELY (stop != -1 && position > stop))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* bring to uncorrected position in segment */
|
2007-11-09 11:56:41 +00:00
|
|
|
result = position - start;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
} else {
|
|
|
|
/* cannot continue if no stop position set or outside of
|
|
|
|
* the segment. */
|
2007-11-09 11:56:41 +00:00
|
|
|
if (G_UNLIKELY (stop == -1 || position > stop))
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* bring to uncorrected position in segment */
|
2007-11-09 11:56:41 +00:00
|
|
|
result = stop - position;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
}
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
/* scale based on the rate, avoid division by and conversion to
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* float when not needed */
|
2011-05-09 14:39:13 +00:00
|
|
|
abs_rate = ABS (segment->rate);
|
|
|
|
if (G_UNLIKELY (abs_rate != 1.0))
|
|
|
|
result /= abs_rate;
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
/* correct for base of the segment */
|
|
|
|
result += base;
|
2005-11-20 19:11:09 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_clip:
|
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @format: the format of the segment.
|
|
|
|
* @start: the start position in the segment
|
|
|
|
* @stop: the stop position in the segment
|
2010-12-07 18:35:04 +00:00
|
|
|
* @clip_start: (out) (allow-none): the clipped start position in the segment
|
|
|
|
* @clip_stop: (out) (allow-none): the clipped stop position in the segment
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
|
|
|
* Clip the given @start and @stop values to the segment boundaries given
|
2011-05-13 16:07:24 +00:00
|
|
|
* in @segment. @start and @stop are compared and clipped to @segment
|
docs/design/part-overview.txt: Make upsteam/downstream concepts more clear.
Original commit message from CVS:
* docs/design/part-overview.txt:
Make upsteam/downstream concepts more clear.
Give an example of serialized/non-serialized events.
* docs/design/part-events.txt:
* docs/design/part-streams.txt:
Mention applied_rate.
* docs/design/part-trickmodes.txt:
Mention applied rate, flesh out some more use cases.
* gst/gstevent.c: (gst_event_new_new_segment),
(gst_event_parse_new_segment), (gst_event_new_new_segment_full),
(gst_event_parse_new_segment_full), (gst_event_new_tag),
(gst_event_parse_tag), (gst_event_new_buffer_size),
(gst_event_parse_buffer_size), (gst_event_new_qos),
(gst_event_parse_qos), (gst_event_parse_seek),
(gst_event_new_navigation):
* gst/gstevent.h:
Add applied_rate field to NEWSEGMENT event.
API: gst_event_new_new_segment_full()
API: gst_event_parse_new_segment_full()
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
(gst_segment_to_stream_time), (gst_segment_to_running_time):
* gst/gstsegment.h:
Add applied_rate to GstSegment structure.
Make calculation of stream_time and running_time more correct
wrt rate/applied_rate.
Add some more docs.
API: GstSegment::applied_rate field
API: gst_segment_set_newsegment_full();
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
(gst_base_sink_get_sync_times), (gst_base_sink_get_position):
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_sink_eventfunc),
(gst_base_transform_handle_buffer):
Parse and use applied_rate in the GstSegment field.
* tests/check/gst/gstevent.c: (GST_START_TEST):
Add check for applied_rate field.
* tests/check/gst/gstsegment.c: (GST_START_TEST),
(gstsegments_suite):
Add more checks for various GstSegment operations.
2006-05-08 09:52:33 +00:00
|
|
|
* start and stop values.
|
2005-11-20 19:11:09 +00:00
|
|
|
*
|
Documentation updates.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstbin.c: (bin_bus_handler), (gst_bin_handle_message_func):
* gst/gstbin.h:
* gst/gstbus.c: (gst_bus_class_init):
* gst/gstbus.h:
* gst/gstclock.c:
* gst/gstelement.c: (gst_element_set_locked_state):
* gst/gstsegment.c:
Documentation updates.
* gst/gstpipeline.c: (gst_pipeline_get_type),
(gst_pipeline_class_init), (gst_pipeline_init),
(gst_pipeline_dispose), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_send_event), (gst_pipeline_change_state),
(gst_pipeline_provide_clock_func), (gst_pipeline_set_delay),
(gst_pipeline_get_delay):
* gst/gstpipeline.h:
Added methods for setting the delay.
API: gst_pipeline_set_delay
API: gst_pipeline_get_delay
Add pipeline debug category
Various cleanups.
Updated docs.
Don't reset stream time when seek failed.
2006-03-13 11:04:38 +00:00
|
|
|
* If the function returns FALSE, @start and @stop are known to fall
|
|
|
|
* outside of @segment and @clip_start and @clip_stop are not updated.
|
|
|
|
*
|
|
|
|
* When the function returns TRUE, @clip_start and @clip_stop will be
|
|
|
|
* updated. If @clip_start or @clip_stop are different from @start or @stop
|
|
|
|
* respectively, the region fell partially in the segment.
|
|
|
|
*
|
2007-06-05 16:25:06 +00:00
|
|
|
* Note that when @stop is -1, @clip_stop will be set to the end of the
|
|
|
|
* segment. Depending on the use case, this may or may not be what you want.
|
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* Returns: TRUE if the given @start and @stop times fall partially or
|
|
|
|
* completely in @segment, FALSE if the values are completely outside
|
Documentation updates.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstbin.c: (bin_bus_handler), (gst_bin_handle_message_func):
* gst/gstbin.h:
* gst/gstbus.c: (gst_bus_class_init):
* gst/gstbus.h:
* gst/gstclock.c:
* gst/gstelement.c: (gst_element_set_locked_state):
* gst/gstsegment.c:
Documentation updates.
* gst/gstpipeline.c: (gst_pipeline_get_type),
(gst_pipeline_class_init), (gst_pipeline_init),
(gst_pipeline_dispose), (gst_pipeline_set_property),
(gst_pipeline_get_property), (do_pipeline_seek),
(gst_pipeline_send_event), (gst_pipeline_change_state),
(gst_pipeline_provide_clock_func), (gst_pipeline_set_delay),
(gst_pipeline_get_delay):
* gst/gstpipeline.h:
Added methods for setting the delay.
API: gst_pipeline_set_delay
API: gst_pipeline_get_delay
Add pipeline debug category
Various cleanups.
Updated docs.
Don't reset stream time when seek failed.
2006-03-13 11:04:38 +00:00
|
|
|
* of the segment.
|
2005-11-20 19:11:09 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2011-05-13 16:07:24 +00:00
|
|
|
gst_segment_clip (const GstSegment * segment, GstFormat format, guint64 start,
|
|
|
|
guint64 stop, guint64 * clip_start, guint64 * clip_stop)
|
2005-11-20 19:11:09 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (segment != NULL, FALSE);
|
2011-05-13 16:07:24 +00:00
|
|
|
g_return_val_if_fail (segment->format == format, FALSE);
|
More segment updates, replace code in plugins with segment helper functions.
Original commit message from CVS:
* check/gst/gstsegment.c: (GST_START_TEST):
* docs/design/part-TODO.txt:
* gst/base/gstbasesink.c: (gst_base_sink_handle_object),
(gst_base_sink_event), (gst_base_sink_do_sync),
(gst_base_sink_activate_pull), (gst_base_sink_get_position),
(gst_base_sink_query), (gst_base_sink_change_state):
* gst/base/gstbasesink.h:
* gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
(gst_base_src_default_newsegment),
(gst_base_src_configure_segment), (gst_base_src_do_seek),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_change_state):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf),
(gst_base_transform_event), (gst_base_transform_change_state):
* gst/base/gstbasetransform.h:
* gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
(gst_collect_pads_event):
* gst/base/gstcollectpads.h:
* gst/elements/gstfakesrc.c: (gst_fake_src_init),
(gst_fake_src_create):
* gst/elements/gstfakesrc.h:
* gst/elements/gstidentity.c: (gst_identity_transform_ip):
* gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
(gst_segment_set_last_stop), (gst_segment_set_seek),
(gst_segment_set_newsegment), (gst_segment_to_stream_time),
(gst_segment_to_running_time), (gst_segment_clip):
* gst/gstsegment.h:
More segment updates, replace code in plugins with segment
helper functions.
2005-11-21 17:09:45 +00:00
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
/* if we have a stop position and a valid start and start is bigger,
|
2006-02-02 11:59:27 +00:00
|
|
|
* we're outside of the segment */
|
2006-06-12 09:29:49 +00:00
|
|
|
if (G_UNLIKELY (segment->stop != -1 && start != -1 && start >= segment->stop))
|
2005-11-20 19:11:09 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* if a stop position is given and is before the segment start,
|
2009-08-11 11:21:35 +00:00
|
|
|
* we're outside of the segment. Special case is were start
|
|
|
|
* and stop are equal to the segment start. In that case we
|
|
|
|
* are inside the segment. */
|
|
|
|
if (G_UNLIKELY (stop != -1 && (stop < segment->start || (start != stop
|
|
|
|
&& stop == segment->start))))
|
2005-11-20 19:11:09 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2006-02-02 11:59:27 +00:00
|
|
|
if (clip_start) {
|
|
|
|
if (start == -1)
|
|
|
|
*clip_start = -1;
|
|
|
|
else
|
|
|
|
*clip_start = MAX (start, segment->start);
|
|
|
|
}
|
2005-11-20 19:11:09 +00:00
|
|
|
|
|
|
|
if (clip_stop) {
|
|
|
|
if (stop == -1)
|
|
|
|
*clip_stop = segment->stop;
|
|
|
|
else if (segment->stop == -1)
|
2011-05-13 16:07:24 +00:00
|
|
|
*clip_stop = stop;
|
2005-11-20 19:11:09 +00:00
|
|
|
else
|
|
|
|
*clip_stop = MIN (stop, segment->stop);
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
if (segment->duration != -1 && *clip_stop != -1)
|
2005-11-20 19:11:09 +00:00
|
|
|
*clip_stop = MIN (*clip_stop, segment->duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-06-03 17:06:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_to_position:
|
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @format: the format of the segment.
|
|
|
|
* @running_time: the running_time in the segment
|
|
|
|
*
|
|
|
|
* Convert @running_time into a position in the segment so that
|
|
|
|
* gst_segment_to_running_time() with that position returns @running_time.
|
|
|
|
*
|
2009-06-04 10:48:51 +00:00
|
|
|
* Returns: the position in the segment for @running_time. This function returns
|
|
|
|
* -1 when @running_time is -1 or when it is not inside @segment.
|
2009-06-03 17:06:30 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64
|
|
|
|
gst_segment_to_position (const GstSegment * segment, GstFormat format,
|
|
|
|
guint64 running_time)
|
2009-06-03 17:06:30 +00:00
|
|
|
{
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64 result;
|
|
|
|
guint64 start, stop, base;
|
2011-05-09 14:39:13 +00:00
|
|
|
gdouble abs_rate;
|
2009-06-03 17:06:30 +00:00
|
|
|
|
|
|
|
if (G_UNLIKELY (running_time == -1))
|
|
|
|
return -1;
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
g_return_val_if_fail (segment != NULL, -1);
|
|
|
|
g_return_val_if_fail (segment->format == format, FALSE);
|
2009-06-03 17:06:30 +00:00
|
|
|
|
|
|
|
/* if we have the position for the same format as the segment, we can compare
|
|
|
|
* the start and stop values, otherwise we assume 0 and -1 */
|
|
|
|
if (G_LIKELY (segment->format == format)) {
|
|
|
|
start = segment->start;
|
|
|
|
stop = segment->stop;
|
2011-05-13 16:07:24 +00:00
|
|
|
base = segment->base;
|
2009-06-03 17:06:30 +00:00
|
|
|
} else {
|
|
|
|
start = 0;
|
|
|
|
stop = -1;
|
2011-05-13 16:07:24 +00:00
|
|
|
base = 0;
|
2009-06-03 17:06:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this running_time was for a previous segment */
|
2011-05-13 16:07:24 +00:00
|
|
|
if (running_time < base)
|
2009-06-03 17:06:30 +00:00
|
|
|
return -1;
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
/* start by subtracting the base time */
|
|
|
|
result = running_time - base;
|
2009-06-03 17:06:30 +00:00
|
|
|
|
|
|
|
/* move into the segment at the right rate */
|
2011-05-09 14:39:13 +00:00
|
|
|
abs_rate = ABS (segment->rate);
|
|
|
|
if (G_UNLIKELY (abs_rate != 1.0))
|
|
|
|
result = ceil (result * abs_rate);
|
2009-06-03 17:06:30 +00:00
|
|
|
|
|
|
|
if (G_LIKELY (segment->rate > 0.0)) {
|
|
|
|
/* bring to corrected position in segment */
|
|
|
|
result += start;
|
|
|
|
|
|
|
|
/* outside of the segment boundary stop */
|
|
|
|
if (G_UNLIKELY (stop != -1 && result > stop))
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
/* cannot continue if no stop position set or outside of
|
|
|
|
* the segment. */
|
|
|
|
if (G_UNLIKELY (stop == -1 || result + start > stop))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* bring to corrected position in segment */
|
|
|
|
result = stop - result;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2009-06-04 10:48:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_segment_set_running_time:
|
|
|
|
* @segment: a #GstSegment structure.
|
|
|
|
* @format: the format of the segment.
|
|
|
|
* @running_time: the running_time in the segment
|
|
|
|
*
|
2011-05-13 16:07:24 +00:00
|
|
|
* Adjust the start/stop and base values of @segment such that the next valid
|
2009-06-04 10:48:51 +00:00
|
|
|
* buffer will be one with @running_time.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the segment could be updated successfully. If %FALSE is
|
|
|
|
* returned, @running_time is -1 or not in @segment.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_segment_set_running_time (GstSegment * segment, GstFormat format,
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64 running_time)
|
2009-06-04 10:48:51 +00:00
|
|
|
{
|
2011-05-13 16:07:24 +00:00
|
|
|
guint64 position;
|
|
|
|
guint64 start, stop;
|
2009-06-04 10:48:51 +00:00
|
|
|
|
|
|
|
/* start by bringing the running_time into the segment position */
|
|
|
|
position = gst_segment_to_position (segment, format, running_time);
|
|
|
|
|
|
|
|
/* we must have a valid position now */
|
|
|
|
if (G_UNLIKELY (position == -1))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
start = segment->start;
|
|
|
|
stop = segment->stop;
|
|
|
|
|
|
|
|
if (G_LIKELY (segment->rate > 0.0)) {
|
2011-05-13 16:07:24 +00:00
|
|
|
/* update the start and time values */
|
2009-06-04 10:48:51 +00:00
|
|
|
start = position;
|
|
|
|
} else {
|
|
|
|
/* reverse, update stop */
|
|
|
|
stop = position;
|
|
|
|
}
|
2011-05-13 16:07:24 +00:00
|
|
|
/* and base time is exactly the running time */
|
2009-06-04 10:48:51 +00:00
|
|
|
segment->time = gst_segment_to_stream_time (segment, format, start);
|
|
|
|
segment->start = start;
|
|
|
|
segment->stop = stop;
|
2011-05-13 16:07:24 +00:00
|
|
|
segment->base = running_time;
|
2009-06-04 10:48:51 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|