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
4118695e
Commit
4118695e
authored
Jan 07, 2003
by
Johan Bilien
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/mpeg/ts.c: fixed ts_dvbpsi demux forcing (with
file/ts_dvbpsi:) with TS streams that don't start with 0x47
parent
768df457
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/demux/mpeg/ts.c
modules/demux/mpeg/ts.c
+4
-3
No files found.
modules/demux/mpeg/ts.c
View file @
4118695e
...
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: ts.c,v 1.1
1 2002/12/18 16:27:56 fenrir
Exp $
* $Id: ts.c,v 1.1
2 2003/01/07 15:12:48 jobi
Exp $
*
* Authors: Henri Fallon <henri@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
...
...
@@ -145,7 +145,8 @@ static int Activate( vlc_object_t * p_this )
if
(
*
p_peek
!=
TS_SYNC_CODE
)
{
if
(
*
p_input
->
psz_demux
&&
!
strncmp
(
p_input
->
psz_demux
,
"ts"
,
3
)
)
if
(
*
p_input
->
psz_demux
&&
(
!
strncmp
(
p_input
->
psz_demux
,
"ts"
,
3
)
||
!
strncmp
(
p_input
->
psz_demux
,
"ts_dvbpsi"
,
10
)
)
)
{
/* User forced */
msg_Err
(
p_input
,
"this does not look like a TS stream, continuing"
);
...
...
@@ -743,7 +744,7 @@ static void TSDecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
#elif defined MODULE_NAME_IS_ts_dvbpsi
/*
* PSI Decoding using libdvb
css
* PSI Decoding using libdvb
psi
*/
/*****************************************************************************
...
...
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