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
3939be7d
Commit
3939be7d
authored
Mar 20, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./src/input/mpeg_system.c: fixed a bus error on UltraSparc.
parent
cd437524
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
src/input/mpeg_system.c
src/input/mpeg_system.c
+3
-4
No files found.
src/input/mpeg_system.c
View file @
3939be7d
...
...
@@ -2,7 +2,7 @@
* mpeg_system.c: TS, PS and PES management
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: mpeg_system.c,v 1.8
6 2002/03/19 23:02:29 jobi
Exp $
* $Id: mpeg_system.c,v 1.8
7 2002/03/20 17:44:15 sam
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
...
@@ -455,9 +455,8 @@ void input_GatherPES( input_thread_t * p_input, data_packet_t * p_data,
if
(
p_data
->
p_payload_end
-
p_data
->
p_payload_start
>=
PES_HEADER_SIZE
)
{
p_es
->
i_pes_real_size
=
U16_AT
(
p_data
->
p_payload_start
+
4
)
+
6
;
p_es
->
i_pes_real_size
=
((
u16
)
p_data
->
p_payload_start
[
4
]
<<
8
)
+
p_data
->
p_payload_start
[
5
]
+
6
;
}
else
{
...
...
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