X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgst.c;h=ddd68a1e81910525b4fe1cd199034bc40cd5c5f2;hb=533548529b564b43bdd5743ef072e2da75822947;hp=f734dc9c76464ed776eda1a28aa8b73a5381cede;hpb=043c629e72946f80e251ce149777ab91f184cb29;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gst.c b/gst/gst.c index f734dc9..ddd68a1 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -484,14 +484,15 @@ init_pre (GOptionContext * context, GOptionGroup * group, gpointer data, * So give some useful info about GStreamer here */ #ifdef G_OS_WIN32 { - gchar *basedir = g_win32_get_package_installation_directory_of_module (_priv_gst_dll_handle); + gchar *basedir = + g_win32_get_package_installation_directory_of_module + (_priv_gst_dll_handle); libdir = g_build_filename (basedir, #ifdef _DEBUG - "debug" + "debug" #endif - "lib", - NULL); + "lib", NULL); g_free (basedir); } #else @@ -662,6 +663,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_meta_flags_get_type ()); g_type_class_ref (gst_toc_entry_type_get_type ()); g_type_class_ref (gst_toc_scope_get_type ()); + g_type_class_ref (gst_toc_loop_type_get_type ()); g_type_class_ref (gst_control_binding_get_type ()); g_type_class_ref (gst_control_source_get_type ()); g_type_class_ref (gst_lock_flags_get_type ()); @@ -1058,6 +1060,7 @@ gst_deinit (void) g_type_class_unref (g_type_class_peek (gst_control_binding_get_type ())); g_type_class_unref (g_type_class_peek (gst_control_source_get_type ())); g_type_class_unref (g_type_class_peek (gst_toc_entry_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_toc_loop_type_get_type ())); g_type_class_unref (g_type_class_peek (gst_lock_flags_get_type ())); g_type_class_unref (g_type_class_peek (gst_allocator_flags_get_type ())); g_type_class_unref (g_type_class_peek (gst_stream_flags_get_type ()));