mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 20:59:44 +00:00
flite: fix uninitialized return value
This commit is contained in:
parent
72adc42a15
commit
a6a94fec48
1 changed files with 1 additions and 2 deletions
|
@ -269,7 +269,6 @@ static gboolean
|
|||
gst_flite_test_src_set_caps (GstBaseSrc * basesrc, GstCaps * caps)
|
||||
{
|
||||
GstFliteTestSrc *src = GST_FLITE_TEST_SRC (basesrc);
|
||||
gboolean ret;
|
||||
|
||||
gst_audio_info_init (&src->info);
|
||||
if (!gst_audio_info_from_caps (&src->info, caps)) {
|
||||
|
@ -277,7 +276,7 @@ gst_flite_test_src_set_caps (GstBaseSrc * basesrc, GstCaps * caps)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
return ret;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
|
Loading…
Reference in a new issue