|
From: <sl...@ke...> - 2011-01-27 16:47:39
|
Module: gst-editing-services Branch: master Commit: 94d448cacead10673eca21c6dfa6f9ecc61ab30b URL: http://cgit.freedesktop.org/gstreamer/gst-editing-services/commit/?id=94d448cacead10673eca21c6dfa6f9ecc61ab30b Author: Sebastian Dröge <seb...@co...> Date: Thu Jan 27 17:46:19 2011 +0100 examples: Fix uninitialized variable compiler warning with gcc 4.6 --- tests/examples/concatenate.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/examples/concatenate.c b/tests/examples/concatenate.c index 05084cb..09194e5 100644 --- a/tests/examples/concatenate.c +++ b/tests/examples/concatenate.c @@ -68,7 +68,7 @@ make_profile_from_info (GstDiscovererInfo * info) /* For each on the formats add stream profiles */ for (tmp = substreams; tmp; tmp = tmp->next) { GstDiscovererStreamInfo *stream = GST_DISCOVERER_STREAM_INFO (tmp->data); - GstEncodingProfile *sprof; + GstEncodingProfile *sprof = NULL; if (GST_IS_DISCOVERER_VIDEO_INFO (stream)) { sprof = (GstEncodingProfile *) @@ -78,10 +78,12 @@ make_profile_from_info (GstDiscovererInfo * info) sprof = (GstEncodingProfile *) gst_encoding_audio_profile_new (gst_discoverer_stream_info_get_caps (stream), NULL, NULL, 1); - } else + } else { GST_WARNING ("Unsupported streams"); + } - gst_encoding_container_profile_add_profile (profile, sprof); + if (sprof) + gst_encoding_container_profile_add_profile (profile, sprof); } if (substreams) gst_discoverer_stream_info_list_free (substreams); |