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
a9e4ad23
Commit
a9e4ad23
authored
Mar 27, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Linux DVB: print frequencies and symbol rates in debug
parent
65574801
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
modules/access/dtv/linux.c
modules/access/dtv/linux.c
+8
-0
No files found.
modules/access/dtv/linux.c
View file @
a9e4ad23
...
...
@@ -281,6 +281,14 @@ dvb_device_t *dvb_open (vlc_object_t *obj, bool tune)
msg_Dbg
(
obj
,
"using frontend: %s"
,
d
->
info
.
name
);
msg_Dbg
(
obj
,
" type %u, capabilities 0x%08X"
,
d
->
info
.
type
,
d
->
info
.
caps
);
msg_Dbg
(
obj
,
" frequencies %10"
PRIu32
" to %10"
PRIu32
,
d
->
info
.
frequency_min
,
d
->
info
.
frequency_max
);
msg_Dbg
(
obj
,
" (%"
PRIu32
" tolerance, %"
PRIu32
" per step)"
,
d
->
info
.
frequency_tolerance
,
d
->
info
.
frequency_stepsize
);
msg_Dbg
(
obj
,
" bauds rates %10"
PRIu32
" to %10"
PRIu32
,
d
->
info
.
symbol_rate_min
,
d
->
info
.
symbol_rate_max
);
msg_Dbg
(
obj
,
" (%"
PRIu32
" tolerance)"
,
d
->
info
.
symbol_rate_tolerance
);
d
->
ca
=
dvb_open_node
(
dirfd
,
device
,
"ca"
,
O_RDWR
);
if
(
d
->
ca
==
-
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