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
9c1a7dda
Commit
9c1a7dda
authored
Mar 18, 2001
by
Henri Fallon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced ( a < b/c ) by ( a*c < b ).
parent
2339d58b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
plugins/mpeg/input_ts.c
plugins/mpeg/input_ts.c
+2
-2
No files found.
plugins/mpeg/input_ts.c
View file @
9c1a7dda
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* input_ts.c: TS demux and netlist management
* input_ts.c: TS demux and netlist management
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ts.c,v 1.1
0 2001/03/18 18:48:27
henri Exp $
* $Id: input_ts.c,v 1.1
1 2001/03/18 20:46:16
henri Exp $
*
*
* Authors: Henri Fallon <henri@videolan.org>
* Authors: Henri Fallon <henri@videolan.org>
*
*
...
@@ -257,7 +257,7 @@ static int TSRead( input_thread_t * p_input,
...
@@ -257,7 +257,7 @@ static int TSRead( input_thread_t * p_input,
(
int
)(
i_read
/
TS_PACKET_SIZE
)
,
pp_packets
);
(
int
)(
i_read
/
TS_PACKET_SIZE
)
,
pp_packets
);
/* check correct TS header */
/* check correct TS header */
for
(
i_loop
=
0
;
i_loop
<
(
int
)(
i_read
/
TS_PACKET_SIZE
)
;
i_loop
++
)
for
(
i_loop
=
0
;
i_loop
*
TS_PACKET_SIZE
<
i_read
;
i_loop
++
)
{
{
if
(
pp_packets
[
i_loop
]
->
p_buffer
[
0
]
!=
0x47
)
if
(
pp_packets
[
i_loop
]
->
p_buffer
[
0
]
!=
0x47
)
intf_ErrMsg
(
"TS input : Bad TS Packet (starcode != 0x47)."
);
intf_ErrMsg
(
"TS input : Bad TS Packet (starcode != 0x47)."
);
...
...
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