Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
14d7d564
Commit
14d7d564
authored
Jun 06, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/mpeg/ts.c: compilation fix.
parent
d841ab85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/demux/mpeg/ts.c
modules/demux/mpeg/ts.c
+3
-3
No files found.
modules/demux/mpeg/ts.c
View file @
14d7d564
...
...
@@ -106,7 +106,7 @@ static void TSDemuxPSI ( input_thread_t *, data_packet_t *,
static
void
TSDecodePAT
(
input_thread_t
*
,
es_descriptor_t
*
);
static
void
TSDecodePMT
(
input_thread_t
*
,
es_descriptor_t
*
);
#define PSI_CALLBACK TSDemuxPSI
#elif defined MODULE_NAME_IS_ts_olddvbpsi
#elif defined MODULE_NAME_IS_ts_old
_
dvbpsi
static
void
TS_DVBPSI_DemuxPSI
(
input_thread_t
*
,
data_packet_t
*
,
es_descriptor_t
*
,
vlc_bool_t
);
static
void
TS_DVBPSI_HandlePAT
(
input_thread_t
*
,
dvbpsi_pat_t
*
);
...
...
@@ -170,8 +170,8 @@ static int Activate( vlc_object_t * p_this )
return
VLC_EGENERIC
;
}
if
(
*
p_input
->
psz_demux
&&
(
!
strncmp
(
p_input
->
psz_demux
,
"ts"
,
3
)
||
!
strncmp
(
p_input
->
psz_demux
,
"ts_dvbpsi"
,
10
)
)
)
if
(
*
p_input
->
psz_demux
&&
(
!
strncmp
(
p_input
->
psz_demux
,
"ts
_old
"
,
3
)
||
!
strncmp
(
p_input
->
psz_demux
,
"ts_
old_
dvbpsi"
,
10
)
)
)
b_force
=
VLC_TRUE
;
/* In a TS_PACKET_SIZE buffer we should find a sync byte */
...
...
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