Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b0a60302
Commit
b0a60302
authored
Aug 30, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dtv: accept frequency as low as 50 MHz (fixes #7406)
(cherry picked from commit
d17ebaf1
)
parent
e60b9b8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/access/dtv/access.c
modules/access/dtv/access.c
+1
-1
No files found.
modules/access/dtv/access.c
View file @
b0a60302
...
@@ -665,7 +665,7 @@ static int Tune (vlc_object_t *obj, dvb_device_t *dev, const delsys_t *delsys,
...
@@ -665,7 +665,7 @@ static int Tune (vlc_object_t *obj, dvb_device_t *dev, const delsys_t *delsys,
static
uint64_t
var_InheritFrequency
(
vlc_object_t
*
obj
)
static
uint64_t
var_InheritFrequency
(
vlc_object_t
*
obj
)
{
{
uint64_t
freq
=
var_InheritInteger
(
obj
,
"dvb-frequency"
);
uint64_t
freq
=
var_InheritInteger
(
obj
,
"dvb-frequency"
);
if
(
freq
!=
0
&&
freq
<
=
108
000000
)
if
(
freq
!=
0
&&
freq
<
30
000000
)
{
{
msg_Err
(
obj
,
"%"
PRIu64
" Hz carrier frequency is too low."
,
freq
);
msg_Err
(
obj
,
"%"
PRIu64
" Hz carrier frequency is too low."
,
freq
);
freq
*=
1000
;
freq
*=
1000
;
...
...
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