mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
timidity: Fix unitialized variables (gcc 4.4.4)
This commit is contained in:
parent
acad667e43
commit
a80165d23b
1 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ static GstSegment *
|
|||
gst_timidity_get_segment (GstTimidity * timidity, GstFormat format,
|
||||
gboolean update)
|
||||
{
|
||||
gint64 start, stop, time;
|
||||
gint64 start = 0, stop = 0, time = 0;
|
||||
|
||||
GstSegment *segment = gst_segment_new ();
|
||||
|
||||
|
@ -377,7 +377,7 @@ gst_timidity_src_event (GstPad * pad, GstEvent * event)
|
|||
GstFormat src_format, dst_format;
|
||||
GstSeekFlags flags;
|
||||
GstSeekType start_type, stop_type;
|
||||
gint64 orig_start, start, stop;
|
||||
gint64 orig_start, start = 0, stop = 0;
|
||||
gboolean flush, update;
|
||||
|
||||
if (!timidity->song)
|
||||
|
|
Loading…
Reference in a new issue