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
30a54d61
Commit
30a54d61
authored
May 07, 2004
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tuning to DVB-C works. Added code to listen to FE_REINIT from the frontend.
parent
0f722429
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
20 deletions
+28
-20
modules/access/dvb/access.c
modules/access/dvb/access.c
+26
-17
modules/access/dvb/dvb.c
modules/access/dvb/dvb.c
+2
-3
No files found.
modules/access/dvb/access.c
View file @
30a54d61
...
...
@@ -83,6 +83,7 @@ int E_(Open) ( vlc_object_t *p_this )
int
i_len
=
0
;
vlc_value_t
val
;
int
i_test
;
int
i_ret
;
/* parse the options passed in command line : */
psz_parser
=
strdup
(
p_input
->
psz_name
);
...
...
@@ -469,13 +470,15 @@ int E_(Open) ( vlc_object_t *p_this )
fep
.
u
.
qpsk
.
symbol_rate
=
p_dvb
->
u_srate
;
fep
.
u
.
qpsk
.
fec_inner
=
dvb_DecodeFEC
(
p_input
,
p_dvb
->
i_fec
);
msg_Dbg
(
p_input
,
"DVB-S: satellite (QPSK) frontend %s found"
,
frontend_info
.
name
);
if
(
ioctl_SetQPSKFrontend
(
p_input
,
fep
)
<
0
)
while
(
(
i_ret
=
ioctl_SetQPSKFrontend
(
p_input
,
fep
))
<
0
)
{
msg_Err
(
p_input
,
"DVB-S: tuning failed"
);
close
(
p_dvb
->
i_frontend
);
free
(
p_dvb
);
return
-
1
;
if
(
(
i_ret
!=
-
3
)
&&
(
i_ret
<
0
))
{
msg_Err
(
p_input
,
"DVB-S: tuning failed"
);
close
(
p_dvb
->
i_frontend
);
free
(
p_dvb
);
return
-
1
;
}
}
break
;
...
...
@@ -487,12 +490,15 @@ int E_(Open) ( vlc_object_t *p_this )
fep
.
u
.
qam
.
fec_inner
=
dvb_DecodeFEC
(
p_input
,
p_dvb
->
i_fec
);
fep
.
u
.
qam
.
modulation
=
dvb_DecodeModulation
(
p_input
,
p_dvb
->
i_modulation
);
msg_Dbg
(
p_input
,
"DVB-C: cable (QAM) frontend %s found"
,
frontend_info
.
name
);
if
(
ioctl_SetQAMFrontend
(
p_input
,
fep
)
<
0
)
{
msg_Err
(
p_input
,
"DVB-C: tuning failed"
);
close
(
p_dvb
->
i_frontend
);
free
(
p_dvb
);
return
-
1
;
while
(
(
i_ret
=
ioctl_SetQAMFrontend
(
p_input
,
fep
)
)
<
0
)
{
if
(
(
i_ret
!=
-
3
)
&&
(
i_ret
<
0
))
{
msg_Err
(
p_input
,
"DVB-C: tuning failed"
);
close
(
p_dvb
->
i_frontend
);
free
(
p_dvb
);
return
-
1
;
}
}
break
;
...
...
@@ -508,12 +514,15 @@ int E_(Open) ( vlc_object_t *p_this )
fep
.
u
.
ofdm
.
guard_interval
=
dvb_DecodeGuardInterval
(
p_input
,
p_dvb
->
i_guard
);
fep
.
u
.
ofdm
.
hierarchy_information
=
dvb_DecodeHierarchy
(
p_input
,
p_dvb
->
i_hierarchy
);
msg_Dbg
(
p_input
,
"DVB-T: terrestrial (OFDM) frontend %s found"
,
frontend_info
.
name
);
if
(
ioctl_SetOFDMFrontend
(
p_input
,
fep
)
<
0
)
while
(
(
i_ret
=
ioctl_SetOFDMFrontend
(
p_input
,
fep
)
)
<
0
)
{
msg_Err
(
p_input
,
"DVB-T: tuning failed"
);
close
(
p_dvb
->
i_frontend
);
free
(
p_dvb
);
return
-
1
;
if
(
(
i_ret
!=
-
3
)
&&
(
i_ret
<
0
))
{
msg_Err
(
p_input
,
"DVB-T: tuning failed"
);
close
(
p_dvb
->
i_frontend
);
free
(
p_dvb
);
return
-
1
;
}
}
break
;
default:
...
...
modules/access/dvb/dvb.c
View file @
30a54d61
...
...
@@ -374,7 +374,6 @@ int ioctl_SetQAMFrontend( input_thread_t * p_input, struct dvb_frontend_paramete
/* Check Status of frontend */
i_ret
=
ioctl_CheckFrontend
(
p_input
,
FE_QAM
);
return
i_ret
;
}
...
...
@@ -387,7 +386,7 @@ static int ioctl_CheckFrontend( input_thread_t * p_input, fe_type_t type )
int
fd_front
=
p_dvb
->
i_frontend
;
int
i_ret
;
while
(
!
p_input
->
b_die
)
while
(
!
p_input
->
b_die
||
!
p_input
->
b_error
)
{
int32_t
value
;
fe_status_t
status
;
...
...
@@ -449,7 +448,7 @@ static int ioctl_CheckFrontend( input_thread_t * p_input, fe_type_t type )
}
msg_Err
(
p_input
,
"check frontend ... resend frontend parameters"
);
msg_Err
(
p_input
,
"check frontend ... tuning failed"
);
return
-
1
;
return
-
3
;
}
/* Read some statistics */
...
...
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