Skip to content
Snippets Groups Projects
Commit d66f36af authored by Nicolas LeQuec's avatar Nicolas LeQuec Committed by Thomas Guillem
Browse files

libvlc: integrate vlc_tracer API

parent fa32b560
No related branches found
No related tags found
1 merge request!365core: add trace API
......@@ -179,6 +179,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
goto error;
vlc_LogInit(p_libvlc);
vlc_tracer_Init(p_libvlc);
/*
* Support for gettext
......@@ -389,6 +390,7 @@ void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
config_AutoSaveConfigFile( VLC_OBJECT(p_libvlc) );
vlc_LogDestroy(p_libvlc->obj.logger);
vlc_tracer_Destroy(p_libvlc);
/* Free module bank. It is refcounted, so we call this each time */
module_EndBank (true);
#if defined(_WIN32) || defined(__OS2__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment