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
7598e76c
Commit
7598e76c
authored
May 31, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ts: reverse my last commit (the proper way should be to modify also the
muxer but this will break compatibility).
parent
37d2304f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/demux/mpeg/ts.c
modules/demux/mpeg/ts.c
+3
-2
No files found.
modules/demux/mpeg/ts.c
View file @
7598e76c
...
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: ts.c,v 1.2
5 2003/05/31 00:10:11
fenrir Exp $
* $Id: ts.c,v 1.2
6 2003/05/31 16:15:33
fenrir Exp $
*
* Authors: Henri Fallon <henri@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
...
...
@@ -1532,7 +1532,8 @@ static void TS_DVBPSI_HandlePMT( input_thread_t * p_input,
if
(
p_dr
&&
p_dr
->
i_length
>=
8
)
{
int
i_bih_size
;
i_fourcc
=
VLC_FOURCC
(
p_dr
->
p_data
[
0
],
p_dr
->
p_data
[
1
],
p_dr
->
p_data
[
2
],
p_dr
->
p_data
[
3
]
);
/* i_fourcc = VLC_FOURCC( p_dr->p_data[0], p_dr->p_data[1], p_dr->p_data[2], p_dr->p_data[3] ); */
i_fourcc
=
(
p_dr
->
p_data
[
0
]
<<
24
)
|
(
p_dr
->
p_data
[
1
]
<<
16
)
|
(
p_dr
->
p_data
[
2
]
<<
8
)
|
p_dr
->
p_data
[
3
];
i_bih_size
=
(
p_dr
->
p_data
[
8
]
<<
8
)
|
p_dr
->
p_data
[
9
];
i_size
=
sizeof
(
BITMAPINFOHEADER
)
+
i_bih_size
;
...
...
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