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
c86ee9a0
Commit
c86ee9a0
authored
Aug 25, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added check against NIT dvbpsi support.
It is not mandatory but NIT support is better.
parent
671198a8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
14 deletions
+43
-14
modules/access/dvb/access.c
modules/access/dvb/access.c
+0
-2
modules/access/dvb/en50221.c
modules/access/dvb/en50221.c
+0
-2
modules/access/dvb/http.c
modules/access/dvb/http.c
+0
-2
modules/access/dvb/linux_dvb.c
modules/access/dvb/linux_dvb.c
+0
-2
modules/access/dvb/scan.c
modules/access/dvb/scan.c
+25
-6
modules/access/dvb/scan.h
modules/access/dvb/scan.h
+18
-0
No files found.
modules/access/dvb/access.c
View file @
c86ee9a0
...
...
@@ -56,7 +56,6 @@
# include <dvbpsi/psi.h>
# include <dvbpsi/demux.h>
# include <dvbpsi/sdt.h>
# include <dvbpsi/nit.h>
#else
# include "dvbpsi.h"
# include "descriptor.h"
...
...
@@ -66,7 +65,6 @@
# include "psi.h"
# include "demux.h"
# include "sdt.h"
# include "nit.h"
#endif
#ifdef ENABLE_HTTPD
...
...
modules/access/dvb/en50221.c
View file @
c86ee9a0
...
...
@@ -57,7 +57,6 @@
# include <dvbpsi/psi.h>
# include <dvbpsi/demux.h>
# include <dvbpsi/sdt.h>
# include <dvbpsi/nit.h>
#else
# include "dvbpsi.h"
# include "descriptor.h"
...
...
@@ -67,7 +66,6 @@
# include "psi.h"
# include "demux.h"
# include "sdt.h"
# include "nit.h"
#endif
#ifdef ENABLE_HTTPD
...
...
modules/access/dvb/http.c
View file @
c86ee9a0
...
...
@@ -50,7 +50,6 @@
# include <dvbpsi/psi.h>
# include <dvbpsi/demux.h>
# include <dvbpsi/sdt.h>
# include <dvbpsi/nit.h>
#else
# include "dvbpsi.h"
# include "descriptor.h"
...
...
@@ -60,7 +59,6 @@
# include "psi.h"
# include "demux.h"
# include "sdt.h"
# include "nit.h"
#endif
#ifdef ENABLE_HTTPD
...
...
modules/access/dvb/linux_dvb.c
View file @
c86ee9a0
...
...
@@ -57,7 +57,6 @@
# include <dvbpsi/psi.h>
# include <dvbpsi/demux.h>
# include <dvbpsi/sdt.h>
# include <dvbpsi/nit.h>
#else
# include "dvbpsi.h"
# include "descriptor.h"
...
...
@@ -67,7 +66,6 @@
# include "psi.h"
# include "demux.h"
# include "sdt.h"
# include "nit.h"
#endif
#ifdef ENABLE_HTTPD
...
...
modules/access/dvb/scan.c
View file @
c86ee9a0
...
...
@@ -52,7 +52,6 @@
# include <dvbpsi/psi.h>
# include <dvbpsi/demux.h>
# include <dvbpsi/sdt.h>
# include <dvbpsi/nit.h>
#else
# include "dvbpsi.h"
# include "descriptor.h"
...
...
@@ -62,7 +61,6 @@
# include "psi.h"
# include "demux.h"
# include "sdt.h"
# include "nit.h"
#endif
#ifdef ENABLE_HTTPD
...
...
@@ -388,6 +386,7 @@ static void SDTCallBack( scan_session_t *p_session, dvbpsi_sdt_t *p_sdt )
}
}
#ifdef DVBPSI_USE_NIT
static
void
NITCallBack
(
scan_session_t
*
p_session
,
dvbpsi_nit_t
*
p_nit
)
{
vlc_object_t
*
p_obj
=
p_session
->
p_obj
;
...
...
@@ -498,13 +497,16 @@ static void NITCallBack( scan_session_t *p_session, dvbpsi_nit_t *p_nit )
}
}
}
#endif
static
void
PSINewTableCallBack
(
scan_session_t
*
p_session
,
dvbpsi_handle
h
,
uint8_t
i_table_id
,
uint16_t
i_extension
)
{
if
(
i_table_id
==
0x42
)
dvbpsi_AttachSDT
(
h
,
i_table_id
,
i_extension
,
(
dvbpsi_sdt_callback
)
SDTCallBack
,
p_session
);
#ifdef DVBPSI_USE_NIT
else
if
(
i_table_id
==
0x40
)
dvbpsi_AttachNIT
(
h
,
i_table_id
,
i_extension
,
(
dvbpsi_nit_callback
)
NITCallBack
,
p_session
);
#endif
}
...
...
@@ -520,9 +522,10 @@ int scan_session_Init( vlc_object_t *p_obj, scan_session_t *p_session, const sca
p_session
->
i_nit_pid
=
-
1
;
p_session
->
sdt
=
NULL
;
p_session
->
p_sdt
=
NULL
;
#ifdef DVBPSI_USE_NIT
p_session
->
nit
=
NULL
;
p_session
->
p_nit
=
NULL
;
#endif
return
VLC_SUCCESS
;
}
...
...
@@ -532,7 +535,10 @@ void scan_session_Clean( scan_t *p_scan, scan_session_t *p_session )
dvbpsi_pat_t
*
p_pat
=
p_session
->
p_pat
;
dvbpsi_sdt_t
*
p_sdt
=
p_session
->
p_sdt
;
#ifdef DVBPSI_USE_NIT
dvbpsi_nit_t
*
p_nit
=
p_session
->
p_nit
;
#endif
if
(
p_pat
)
{
...
...
@@ -586,6 +592,7 @@ void scan_session_Clean( scan_t *p_scan, scan_session_t *p_session )
}
}
#ifdef DVBPSI_USE_NIT
/* Parse NIT */
if
(
p_pat
&&
p_nit
)
{
...
...
@@ -619,6 +626,7 @@ void scan_session_Clean( scan_t *p_scan, scan_session_t *p_session )
}
}
}
#endif
/* */
for
(
int
i
=
i_service_start
;
i
<
p_scan
->
i_service
;
i
++
)
...
...
@@ -626,13 +634,15 @@ void scan_session_Clean( scan_t *p_scan, scan_session_t *p_session )
scan_service_t
*
p_srv
=
p_scan
->
pp_service
[
i
];
p_srv
->
i_snr
=
p_session
->
i_snr
;
if
(
p_sdt
)
p_srv
->
i_sdt_version
=
p_sdt
->
i_version
;
#ifdef DVBPSI_USE_NIT
if
(
p_nit
)
{
p_srv
->
i_network_id
=
p_nit
->
i_network_id
;
p_srv
->
i_nit_version
=
p_nit
->
i_version
;
}
if
(
p_sdt
)
p_srv
->
i_sdt_version
=
p_sdt
->
i_version
;
#endif
}
...
...
@@ -646,10 +656,12 @@ void scan_session_Clean( scan_t *p_scan, scan_session_t *p_session )
dvbpsi_DetachDemux
(
p_session
->
sdt
);
if
(
p_session
->
p_sdt
)
dvbpsi_DeleteSDT
(
p_session
->
p_sdt
);
#ifdef DVBPSI_USE_NIT
if
(
p_session
->
nit
)
dvbpsi_DetachDemux
(
p_session
->
nit
);
if
(
p_session
->
p_nit
)
dvbpsi_DeleteNIT
(
p_session
->
p_nit
);
#endif
}
static
int
ScanServiceCmp
(
const
void
*
a
,
const
void
*
b
)
...
...
@@ -772,16 +784,23 @@ bool scan_session_Push( scan_session_t *p_scan, block_t *p_block )
}
else
if
(
i_pid
==
p_scan
->
i_nit_pid
)
{
#ifdef DVBPSI_USE_NIT
if
(
!
p_scan
->
nit
)
p_scan
->
nit
=
dvbpsi_AttachDemux
(
(
dvbpsi_demux_new_cb_t
)
PSINewTableCallBack
,
p_scan
);
if
(
p_scan
->
nit
)
dvbpsi_PushPacket
(
p_scan
->
nit
,
p_block
->
p_buffer
);
#endif
}
block_Release
(
p_block
);
return
p_scan
->
p_pat
&&
p_scan
->
p_sdt
&&
p_scan
->
p_nit
;
return
p_scan
->
p_pat
&&
p_scan
->
p_sdt
&&
#ifdef DVBPSI_USE_NIT
p_scan
->
p_nit
;
#else
true
;
#endif
}
void
scan_service_SetSNR
(
scan_session_t
*
p_session
,
int
i_snr
)
...
...
modules/access/dvb/scan.h
View file @
c86ee9a0
...
...
@@ -20,6 +20,22 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#ifdef HAVE_DVBPSI_DR_H
#ifdef _DVBPSI_DR_43_H_
# define DVBPSI_USE_NIT 1
# include <dvbpsi/nit.h>
#endif
#else
#ifdef _DVBPSI_DR_43_H_
# define DVBPSI_USE_NIT 1
# include "nit.h"
#endif
#endif
#ifndef DVBPSI_USE_NIT
# warning NIT is not supported by your libdvbpsi version
#endif
typedef
enum
{
SCAN_NONE
,
...
...
@@ -101,8 +117,10 @@ typedef struct
dvbpsi_handle
sdt
;
dvbpsi_sdt_t
*
p_sdt
;
#ifdef DVBPSI_USE_NIT
dvbpsi_handle
nit
;
dvbpsi_nit_t
*
p_nit
;
#endif
}
scan_session_t
;
...
...
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