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
9f9e9578
Commit
9f9e9578
authored
Aug 10, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in System End Code handling. Contact me in case of problem.
parent
20ff5191
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
38 deletions
+57
-38
plugins/mpeg/input_ps.c
plugins/mpeg/input_ps.c
+57
-38
No files found.
plugins/mpeg/input_ps.c
View file @
9f9e9578
...
...
@@ -2,7 +2,7 @@
* input_ps.c: PS demux and packet management
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ps.c,v 1.3
2 2001/08/07 02:48:25 sam
Exp $
* $Id: input_ps.c,v 1.3
3 2001/08/10 16:38:09 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Cyril Deguet <asmax@via.ecp.fr>
...
...
@@ -470,7 +470,7 @@ static int PSRead( input_thread_t * p_input,
for
(
i_packet
=
0
;
i_packet
<
INPUT_READ_ONCE
;
i_packet
++
)
{
/* Read what we believe to be a packet header. */
if
(
(
i_error
=
SafeRead
(
p_input
,
p_header
,
6
))
)
if
(
(
i_error
=
SafeRead
(
p_input
,
p_header
,
4
))
)
{
return
(
i_error
);
}
...
...
@@ -504,36 +504,47 @@ static int PSRead( input_thread_t * p_input,
}
/* Packet found. */
*
(
u32
*
)
p_header
=
U32_AT
(
&
i_startcode
);
if
(
(
i_error
=
SafeRead
(
p_input
,
p_header
+
4
,
2
))
)
{
return
(
i_error
);
}
}
if
(
U32_AT
(
p_header
)
!=
0x1BA
)
/* 0x1B9 == SYSTEM_END_CODE, it is only 4 bytes long. */
if
(
U32_AT
(
p_header
)
!=
0x1B9
)
{
/* That's the case for all packets, except pack header. */
i_packet_size
=
U16_AT
(
&
p_header
[
4
]);
}
else
{
/* Pack header. */
if
(
(
p_header
[
4
]
&
0xC0
)
==
0x40
)
/* The packet is at least 6 bytes long. */
if
(
(
i_error
=
SafeRead
(
p_input
,
p_header
+
4
,
2
))
)
{
/* MPEG-2 */
i_packet_size
=
8
;
return
(
i_error
);
}
else
if
(
(
p_header
[
4
]
&
0xF0
)
==
0x20
)
if
(
U32_AT
(
p_header
)
!=
0x1BA
)
{
/*
MPEG-1
*/
i_packet_size
=
6
;
/*
That's the case for all packets, except pack header.
*/
i_packet_size
=
U16_AT
(
&
p_header
[
4
])
;
}
else
{
intf_ErrMsg
(
"Unable to determine stream type"
);
return
(
-
1
);
/* Pack header. */
if
(
(
p_header
[
4
]
&
0xC0
)
==
0x40
)
{
/* MPEG-2 */
i_packet_size
=
8
;
}
else
if
(
(
p_header
[
4
]
&
0xF0
)
==
0x20
)
{
/* MPEG-1 */
i_packet_size
=
6
;
}
else
{
intf_ErrMsg
(
"Unable to determine stream type"
);
return
(
-
1
);
}
}
}
else
{
/* System End Code */
i_packet_size
=
-
2
;
}
/* Fetch a packet of the appropriate size. */
p_data
=
NewPacket
(
p_input
->
p_method_data
,
i_packet_size
+
6
);
...
...
@@ -543,30 +554,38 @@ static int PSRead( input_thread_t * p_input,
return
(
-
1
);
}
/* Copy the header we already read. */
memcpy
(
p_data
->
p_buffer
,
p_header
,
6
);
/* Read the remaining of the packet. */
if
(
i_packet_size
&&
(
i_error
=
SafeRead
(
p_input
,
p_data
->
p_buffer
+
6
,
i_packet_size
))
)
if
(
U32_AT
(
p_header
)
!=
0x1B9
)
{
return
(
i_error
);
}
/* Copy the header we already read. */
memcpy
(
p_data
->
p_buffer
,
p_header
,
6
);
/* In MPEG-2 pack headers we still have to read stuffing bytes. */
if
(
U32_AT
(
p_header
)
==
0x1BA
)
{
if
(
i_packet_size
==
8
&&
(
p_data
->
p_buffer
[
13
]
&
0x7
)
!=
0
)
/* Read the remaining of the packet. */
if
(
i_packet_size
&&
(
i_error
=
SafeRead
(
p_input
,
p_data
->
p_buffer
+
6
,
i_packet_size
))
)
{
/* MPEG-2 stuffing bytes */
byte_t
p_garbage
[
8
];
if
(
(
i_error
=
SafeRead
(
p_input
,
p_garbage
,
p_data
->
p_buffer
[
13
]
&
0x7
))
)
return
(
i_error
);
}
/* In MPEG-2 pack headers we still have to read stuffing bytes. */
if
(
U32_AT
(
p_header
)
==
0x1BA
)
{
if
(
i_packet_size
==
8
&&
(
p_data
->
p_buffer
[
13
]
&
0x7
)
!=
0
)
{
return
(
i_error
);
/* MPEG-2 stuffing bytes */
byte_t
p_garbage
[
8
];
if
(
(
i_error
=
SafeRead
(
p_input
,
p_garbage
,
p_data
->
p_buffer
[
13
]
&
0x7
))
)
{
return
(
i_error
);
}
}
}
}
else
{
/* Copy the small header. */
memcpy
(
p_data
->
p_buffer
,
p_header
,
4
);
}
/* Give the packet to the other input stages. */
pp_packets
[
i_packet
]
=
p_data
;
...
...
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