timidity: Fix unitialized variables (gcc 4.4.4)
This commit is contained in:
parent
acad667e43
commit
a80165d23b
@ -318,7 +318,7 @@ static GstSegment *
|
|||||||
gst_timidity_get_segment (GstTimidity * timidity, GstFormat format,
|
gst_timidity_get_segment (GstTimidity * timidity, GstFormat format,
|
||||||
gboolean update)
|
gboolean update)
|
||||||
{
|
{
|
||||||
gint64 start, stop, time;
|
gint64 start = 0, stop = 0, time = 0;
|
||||||
|
|
||||||
GstSegment *segment = gst_segment_new ();
|
GstSegment *segment = gst_segment_new ();
|
||||||
|
|
||||||
@ -377,7 +377,7 @@ gst_timidity_src_event (GstPad * pad, GstEvent * event)
|
|||||||
GstFormat src_format, dst_format;
|
GstFormat src_format, dst_format;
|
||||||
GstSeekFlags flags;
|
GstSeekFlags flags;
|
||||||
GstSeekType start_type, stop_type;
|
GstSeekType start_type, stop_type;
|
||||||
gint64 orig_start, start, stop;
|
gint64 orig_start, start = 0, stop = 0;
|
||||||
gboolean flush, update;
|
gboolean flush, update;
|
||||||
|
|
||||||
if (!timidity->song)
|
if (!timidity->song)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user