mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
examples: Fix uninitialized variable compiler warning with gcc 4.6
This commit is contained in:
parent
77d789b077
commit
94d448cace
1 changed files with 5 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue