Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
978bea6a
Commit
978bea6a
authored
Oct 15, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
udev: support for V4L1 devices (untested)
parent
13d1312d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
modules/services_discovery/udev.c
modules/services_discovery/udev.c
+11
-1
No files found.
modules/services_discovery/udev.c
View file @
978bea6a
...
...
@@ -212,6 +212,14 @@ static char *decode_property (struct udev_device *dev, const char *name)
return
decode
(
udev_device_get_property_value
(
dev
,
name
));
}
static
bool
is_v4l_legacy
(
struct
udev_device
*
dev
)
{
const
char
*
version
;
version
=
udev_device_get_property_value
(
dev
,
"ID_V4L_VERSION"
);
return
version
&&
!
strcmp
(
version
,
"1"
);
}
static
void
HandleDevice
(
services_discovery_t
*
sd
,
struct
udev_device
*
dev
,
bool
add
)
{
...
...
@@ -222,7 +230,9 @@ static void HandleDevice (services_discovery_t *sd, struct udev_device *dev,
return
;
}
const
char
*
scheme
=
"v4l2"
;
/* FIXME: V4L v1 */
const
char
*
scheme
=
"v4l2"
;
if
(
is_v4l_legacy
(
dev
))
scheme
=
"v4l"
;
const
char
*
node
=
udev_device_get_devnode
(
dev
);
char
*
vnd
=
decode_property
(
dev
,
"ID_VENDOR_ENC"
);
const
char
*
name
=
udev_device_get_property_value
(
dev
,
"ID_V4L_PRODUCT"
);
...
...
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