]> git.sesse.net Git - vlc/blobdiff - src/posix/specific.c
TS demux: iod_descriptor_t: remove write-only members
[vlc] / src / posix / specific.c
index 249163748b0bef92a2fdc7aae55bfc5aa6d54672..0a65fb3359f9f6d56db8542a5dbcc16f94695b34 100644 (file)
@@ -3,19 +3,19 @@
  *****************************************************************************
  * Copyright © 2008 Rémi Denis-Courmont
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifdef HAVE_CONFIG_H
 
 #include <vlc_common.h>
 #include "../libvlc.h"
-#include <pthread.h>
-
-static void set_libvlc_path (void)
-{
-    psz_vlcpath = (char *)PKGLIBDIR;
-}
 
 void system_Init (void)
 {
-    pthread_once_t once = PTHREAD_ONCE_INIT;
-
-    pthread_once (&once, set_libvlc_path);
 }
 
 void system_Configure (libvlc_int_t *libvlc,