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
3d33b851
Commit
3d33b851
authored
Feb 09, 2007
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/ts.c: Fixed erroneous warning messages (reported by
Bill May).
parent
f08d2792
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/demux/ts.c
modules/demux/ts.c
+1
-1
No files found.
modules/demux/ts.c
View file @
3d33b851
...
@@ -967,7 +967,7 @@ static int DemuxFile( demux_t *p_demux )
...
@@ -967,7 +967,7 @@ static int DemuxFile( demux_t *p_demux )
p_pid
=
&
p_sys
->
pid
[
((
p_buffer
[
i_pos
+
1
]
&
0x1f
)
<<
8
)
|
p_buffer
[
i_pos
+
2
]
];
p_pid
=
&
p_sys
->
pid
[
((
p_buffer
[
i_pos
+
1
]
&
0x1f
)
<<
8
)
|
p_buffer
[
i_pos
+
2
]
];
/* Detect discontinuity indicator in adaptation field */
/* Detect discontinuity indicator in adaptation field */
if
(
b_adaptation
)
if
(
b_adaptation
&&
p_buffer
[
i_pos
+
4
]
>
0
)
{
{
if
(
p_buffer
[
i_pos
+
5
]
&
0x80
)
if
(
p_buffer
[
i_pos
+
5
]
&
0x80
)
msg_Warn
(
p_demux
,
"discontinuity indicator (pid=%d) "
,
p_pid
->
i_pid
);
msg_Warn
(
p_demux
,
"discontinuity indicator (pid=%d) "
,
p_pid
->
i_pid
);
...
...
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