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
97f52890
Commit
97f52890
authored
Nov 26, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* system: change some msg_Err to msg_Warn.
parent
f78aa8ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/demux/mpeg/system.c
modules/demux/mpeg/system.c
+5
-5
No files found.
modules/demux/mpeg/system.c
View file @
97f52890
...
...
@@ -2,7 +2,7 @@
* system.c: helper module for TS, PS and PES management
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: system.c,v 1.2
1 2003/11/24 03:30
:38 fenrir Exp $
* $Id: system.c,v 1.2
2 2003/11/26 20:44
:38 fenrir Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
...
@@ -170,7 +170,7 @@ static void ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
if
(
(
p_header
[
0
]
||
p_header
[
1
]
||
(
p_header
[
2
]
!=
1
))
)
{
/* packet_start_code_prefix != 0x000001 */
msg_
Err
(
p_input
,
"data loss, PES packet does not start with 000001"
);
msg_
Warn
(
p_input
,
"data loss, PES packet does not start with 000001"
);
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
p_pes
=
NULL
;
}
...
...
@@ -289,7 +289,7 @@ static void ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
}
if
(
i_pes_header_size
==
23
)
{
msg_
Err
(
p_input
,
"too much MPEG-1 stuffing"
);
msg_
Warn
(
p_input
,
"too much MPEG-1 stuffing"
);
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
p_pes
=
NULL
;
return
;
...
...
@@ -393,7 +393,7 @@ static void ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
/* Go to the next data packet. */
if
(
(
p_data
=
p_data
->
p_next
)
==
NULL
)
{
msg_
Err
(
p_input
,
"PES header bigger than payload"
);
msg_
Warn
(
p_input
,
"PES header bigger than payload"
);
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
p_pes
=
NULL
;
return
;
...
...
@@ -404,7 +404,7 @@ static void ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
/* This last packet is partly header, partly payload. */
if
(
i_payload_size
<
i_pes_header_size
)
{
msg_
Err
(
p_input
,
"PES header bigger than payload"
);
msg_
Warn
(
p_input
,
"PES header bigger than payload"
);
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
p_pes
=
NULL
;
return
;
...
...
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