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
26b5b697
Commit
26b5b697
authored
Feb 13, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
udev ALSA: don't be reliant on device node path, use kernel path
parent
9744c601
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/services_discovery/udev.c
modules/services_discovery/udev.c
+3
-2
No files found.
modules/services_discovery/udev.c
View file @
26b5b697
...
...
@@ -439,12 +439,13 @@ int OpenV4L (vlc_object_t *obj)
static
int
alsa_get_device
(
struct
udev_device
*
dev
,
unsigned
*
restrict
pcard
,
unsigned
*
restrict
pdevice
)
{
const
char
*
node
=
udev_device_get_dev
node
(
dev
);
const
char
*
node
=
udev_device_get_dev
path
(
dev
);
char
type
;
node
=
strrchr
(
node
,
'/'
);
if
(
node
==
NULL
)
return
-
1
;
if
(
sscanf
(
node
,
"/
dev/snd/
pcmC%uD%u%c"
,
pcard
,
pdevice
,
&
type
)
<
3
)
if
(
sscanf
(
node
,
"/pcmC%uD%u%c"
,
pcard
,
pdevice
,
&
type
)
<
3
)
return
-
1
;
if
(
type
!=
'c'
)
return
-
1
;
...
...
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