mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
gst/gstsegment.c (gst_segment_init): Initialize abs_rate.
Original commit message from CVS: 2005-11-21 Andy Wingo <wingo@pobox.com> * gst/gstsegment.c (gst_segment_init): Initialize abs_rate.
This commit is contained in:
parent
9185b7092c
commit
7f0bef0423
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-11-21 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* gst/gstsegment.c (gst_segment_init): Initialize abs_rate.
|
||||||
|
|
||||||
2005-11-21 Julien MOUTTE <julien@moutte.net>
|
2005-11-21 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
* gst/gstvalue.c: (gst_value_intersect_array): Fix wrong
|
* gst/gstvalue.c: (gst_value_intersect_array): Fix wrong
|
||||||
|
|
|
@ -51,6 +51,7 @@ gst_segment_init (GstSegment * segment, GstFormat format)
|
||||||
g_return_if_fail (segment != NULL);
|
g_return_if_fail (segment != NULL);
|
||||||
|
|
||||||
segment->rate = 1.0;
|
segment->rate = 1.0;
|
||||||
|
segment->abs_rate = 1.0;
|
||||||
segment->format = format;
|
segment->format = format;
|
||||||
segment->flags = 0;
|
segment->flags = 0;
|
||||||
segment->start = 0;
|
segment->start = 0;
|
||||||
|
|
Loading…
Reference in a new issue