]> git.sesse.net Git - vlc/commitdiff
Bah, who really needs this ?
authorClément Stenac <zorglub@videolan.org>
Thu, 22 Jun 2006 13:45:38 +0000 (13:45 +0000)
committerClément Stenac <zorglub@videolan.org>
Thu, 22 Jun 2006 13:45:38 +0000 (13:45 +0000)
src/misc/devices.c [new file with mode: 0644]

diff --git a/src/misc/devices.c b/src/misc/devices.c
new file mode 100644 (file)
index 0000000..26403ed
--- /dev/null
@@ -0,0 +1,52 @@
+/*****************************************************************************
+ * devices.c : Handling of devices probing
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
+ * $Id: cpu.c 14103 2006-02-01 12:44:16Z sam $
+ *
+ * Authors: ClÃment Stenac <zorglub@videolan.org>
+ *
+ * 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
+ * (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.
+ *
+ * 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.
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Preamble
+ *****************************************************************************/
+#include <vlc/vlc.h>
+#include <vlc/intf.h>
+#include <vlc_devices.h>
+
+void devices_ProbeCreate( vlc_object_t *p_this )
+{
+    intf_thread_t * p_probe;
+    p_this->p_libvlc->p_probe = NULL;
+
+    /* Allocate structure */
+    p_probe = vlc_object_create( p_this, VLC_OBJECT_INTF );
+    if( !p_probe )
+    {
+        msg_Err( p_this, "out of memory" );
+        return;
+    }
+    p_probe->p_module = module_Need( p_probe, "devices probe", "", VLC_FALSE );
+    if( p_probe->p_module == NULL )
+    {
+        msg_Err( p_this, "no devices probing module could be loaded" );
+        vlc_object_destroy( p_probe );
+        return;
+    }
+
+    p_this->p_libvlc->p_probe = p_probe;
+}