Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
49dd062d
Commit
49dd062d
authored
May 04, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
p_root->p_probe: unused, remove
parent
9c87bdf6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/libvlc.h
src/libvlc.h
+0
-1
src/misc/devices.c
src/misc/devices.c
+3
-2
No files found.
src/libvlc.h
View file @
49dd062d
...
...
@@ -115,7 +115,6 @@ struct libvlc_global_data_t
vlc_object_t
**
pp_objects
;
///< Array of all objects
module_bank_t
*
p_module_bank
;
///< The module bank
intf_thread_t
*
p_probe
;
///< Devices prober
/* Arch-specific variables */
#if defined( SYS_BEOS )
...
...
src/misc/devices.c
View file @
49dd062d
...
...
@@ -34,10 +34,11 @@
#include <vlc/intf.h>
#include <vlc_devices.h>
static intf_thread_t *p_probe_thread = NULL;
void devices_ProbeCreate( vlc_object_t *p_this )
{
intf_thread_t * p_probe;
p_this->p_libvlc_global->p_probe = NULL;
/* Allocate structure */
p_probe = vlc_object_create( p_this, VLC_OBJECT_INTF );
...
...
@@ -54,7 +55,7 @@ void devices_ProbeCreate( vlc_object_t *p_this )
return;
}
p_
this->p_libvlc_global->p_probe
= p_probe;
p_
probe_thread
= p_probe;
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment