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
df385c26
Commit
df385c26
authored
Jan 20, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: converted some msg_Err into msg_Warn
parent
d9a524f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
modules/demux/mpeg/audio.c
modules/demux/mpeg/audio.c
+2
-2
modules/demux/mpeg/m4v.c
modules/demux/mpeg/m4v.c
+5
-5
No files found.
modules/demux/mpeg/audio.c
View file @
df385c26
...
...
@@ -2,7 +2,7 @@
* audio.c : mpeg audio Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: audio.c,v 1.
9 2002/10/23 21:54:33 gbazin
Exp $
* $Id: audio.c,v 1.
10 2003/01/20 13:06:34 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -689,7 +689,7 @@ static int Demux( input_thread_t * p_input )
*/
if
(
!
ReadPES
(
p_input
,
&
p_pes
,
p_demux
->
i_framelength
+
i_skip
)
)
{
msg_
Err
(
p_input
,
msg_
Warn
(
p_input
,
"cannot read data"
);
return
(
-
1
);
}
...
...
modules/demux/mpeg/m4v.c
View file @
df385c26
...
...
@@ -2,7 +2,7 @@
* m4v.c : MPEG-4 video Stream input module for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: m4v.c,v 1.
1 2003/01/12 06:39:45
fenrir Exp $
* $Id: m4v.c,v 1.
2 2003/01/20 13:06:34
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -220,7 +220,7 @@ static int Demux( input_thread_t * p_input )
if
(
(
i_peek
=
input_Peek
(
p_input
,
&
p_peek
,
512
)
)
<
5
)
{
/* Stream shorter than 4 bytes... */
msg_
Err
(
p_input
,
"cannot peek()"
);
msg_
Warn
(
p_input
,
"cannot peek()"
);
return
(
0
);
}
...
...
@@ -234,7 +234,7 @@ static int Demux( input_thread_t * p_input )
&
p_data
,
i_size
)
)
<
0
)
{
msg_
Err
(
p_input
,
"error while reading data"
);
msg_
Warn
(
p_input
,
"error while reading data"
);
break
;
}
PESAddDataPacket
(
p_pes
,
p_data
);
...
...
@@ -246,7 +246,7 @@ static int Demux( input_thread_t * p_input )
if
(
(
i_peek
=
input_Peek
(
p_input
,
&
p_peek
,
512
)
)
<
5
)
{
/* Stream shorter than 4 bytes... */
msg_
Err
(
p_input
,
"cannot peek()"
);
msg_
Warn
(
p_input
,
"cannot peek()"
);
return
(
0
);
}
...
...
@@ -266,7 +266,7 @@ static int Demux( input_thread_t * p_input )
&
p_data
,
i_size
)
)
<
0
)
{
msg_
Err
(
p_input
,
"error while reading data"
);
msg_
Warn
(
p_input
,
"error while reading data"
);
break
;
}
PESAddDataPacket
(
p_pes
,
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