playback: element_init returns void

no need to return boolean as it will
be always TRUE.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/1029>
This commit is contained in:
Stéphane Cerveau 2021-03-16 12:59:14 +01:00 committed by GStreamer Marge Bot
parent d8e00a4ff9
commit a750bc8f23
3 changed files with 4 additions and 4 deletions

View file

@ -36,10 +36,11 @@
#include "gstplaybackelements.h" #include "gstplaybackelements.h"
gboolean void
playback_element_init (GstPlugin * plugin) playback_element_init (GstPlugin * plugin)
{ {
static gsize res = FALSE; static gsize res = FALSE;
if (g_once_init_enter (&res)) { if (g_once_init_enter (&res)) {
gst_pb_utils_init (); gst_pb_utils_init ();
@ -51,5 +52,4 @@ playback_element_init (GstPlugin * plugin)
#endif /* ENABLE_NLS */ #endif /* ENABLE_NLS */
g_once_init_leave (&res, TRUE); g_once_init_leave (&res, TRUE);
} }
return res;
} }

View file

@ -39,6 +39,6 @@ GST_ELEMENT_REGISTER_DECLARE (parsebin);
gboolean gst_play_bin_custom_element_init (GstPlugin * plugin); gboolean gst_play_bin_custom_element_init (GstPlugin * plugin);
gboolean gst_play_bin3_custom_element_init (GstPlugin * plugin); gboolean gst_play_bin3_custom_element_init (GstPlugin * plugin);
G_GNUC_INTERNAL gboolean playback_element_init (GstPlugin * plugin); G_GNUC_INTERNAL void playback_element_init (GstPlugin * plugin);
#endif /* __GST_PLAY_BACK_ELEMENTS_H__ */ #endif /* __GST_PLAY_BACK_ELEMENTS_H__ */

View file

@ -5154,7 +5154,7 @@ gst_play_bin3_custom_element_init (GstPlugin * plugin)
GST_DEBUG_CATEGORY_INIT (gst_play_bin3_debug, "playbin3", 0, "play bin3"); GST_DEBUG_CATEGORY_INIT (gst_play_bin3_debug, "playbin3", 0, "play bin3");
ret &= playback_element_init (plugin); playback_element_init (plugin);
if (g_getenv ("USE_PLAYBIN3")) if (g_getenv ("USE_PLAYBIN3"))
ret &= gst_element_register (plugin, "playbin", GST_RANK_NONE, ret &= gst_element_register (plugin, "playbin", GST_RANK_NONE,