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
9a5b0b80
Commit
9a5b0b80
authored
Jan 20, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: changed some msg_Err into msg_Warn.
parent
abdf248d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+11
-11
modules/demux/avi/libavi.c
modules/demux/avi/libavi.c
+2
-2
No files found.
modules/demux/avi/avi.c
View file @
9a5b0b80
...
...
@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.2
6 2003/01/19 16:57:32 massiot
Exp $
* $Id: avi.c,v 1.2
7 2003/01/20 13:01:53 fenrir
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -1046,7 +1046,7 @@ static int AVIInit( vlc_object_t * p_this )
#endif
break
;
default:
msg_
Err
(
p_input
,
"stream[%d] unknown type"
,
i
);
msg_
Warn
(
p_input
,
"stream[%d] unknown type"
,
i
);
p_info
->
i_cat
=
UNKNOWN_ES
;
i_init_size
=
0
;
p_init_data
=
NULL
;
...
...
@@ -1297,7 +1297,7 @@ static int AVI_StreamChunkFind( input_thread_t *p_input,
if
(
AVI_PacketGetHeader
(
p_input
,
&
avi_pk
)
)
{
msg_
Err
(
p_input
,
"cannot get packet header"
);
msg_
Warn
(
p_input
,
"cannot get packet header"
);
return
VLC_EGENERIC
;
}
if
(
avi_pk
.
i_stream
>=
p_avi
->
i_streams
||
...
...
@@ -1534,7 +1534,7 @@ static int AVISeek ( input_thread_t *p_input,
if
(
i_percent
>=
100
)
{
msg_
Err
(
p_input
,
"cannot seek so far !"
);
msg_
Warn
(
p_input
,
"cannot seek so far !"
);
return
(
-
1
);
}
i_percent
=
__MAX
(
i_percent
,
0
);
...
...
@@ -1555,7 +1555,7 @@ static int AVISeek ( input_thread_t *p_input,
}
if
(
!
p_stream
||
!
p_stream
->
b_activated
)
{
msg_
Err
(
p_input
,
"cannot find any selected stream"
);
msg_
Warn
(
p_input
,
"cannot find any selected stream"
);
return
(
-
1
);
}
...
...
@@ -1564,7 +1564,7 @@ static int AVISeek ( input_thread_t *p_input,
i_stream
,
0
)
)
{
msg_
Err
(
p_input
,
"cannot seek"
);
msg_
Warn
(
p_input
,
"cannot seek"
);
return
(
-
1
);
}
...
...
@@ -1575,7 +1575,7 @@ static int AVISeek ( input_thread_t *p_input,
if
(
AVI_SetStreamChunk
(
p_input
,
i_stream
,
p_stream
->
i_idxposc
+
1
)
)
{
msg_
Err
(
p_input
,
"cannot seek"
);
msg_
Warn
(
p_input
,
"cannot seek"
);
return
(
-
1
);
}
}
...
...
@@ -1723,7 +1723,7 @@ static int AVIDemux_Seekable( input_thread_t *p_input )
if
(
i_stream_count
<=
0
)
{
msg_
Err
(
p_input
,
"no track selected, exiting..."
);
msg_
Warn
(
p_input
,
"no track selected, exiting..."
);
return
(
0
);
}
...
...
@@ -1877,7 +1877,7 @@ static int AVIDemux_Seekable( input_thread_t *p_input )
if
(
AVI_PacketGetHeader
(
p_input
,
&
avi_pk
)
)
{
msg_
Err
(
p_input
,
msg_
Warn
(
p_input
,
"cannot get packet header, track disabled"
);
return
(
AVI_StreamStopFinishedStreams
(
p_input
,
p_avi
)
?
0
:
1
);
}
...
...
@@ -1970,7 +1970,7 @@ static int AVIDemux_Seekable( input_thread_t *p_input )
if
(
input_ReadInPES
(
p_input
,
&
p_pes
,
__EVEN
(
i_size
)
)
<
0
)
{
msg_
Err
(
p_input
,
"failled reading data"
);
msg_
Warn
(
p_input
,
"failled reading data"
);
toread
[
i_stream
].
b_ok
=
VLC_FALSE
;
continue
;
}
...
...
@@ -2090,7 +2090,7 @@ static int AVIDemux_UnSeekable( input_thread_t *p_input )
}
if
(
!
p_stream_master
)
{
msg_
Err
(
p_input
,
"no more stream selected"
);
msg_
Warn
(
p_input
,
"no more stream selected"
);
return
(
0
);
}
...
...
modules/demux/avi/libavi.c
View file @
9a5b0b80
...
...
@@ -2,7 +2,7 @@
* libavi.c :
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: libavi.c,v 1.1
3 2003/01/11 18:10:49
fenrir Exp $
* $Id: libavi.c,v 1.1
4 2003/01/20 13:01:53
fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -359,7 +359,7 @@ static int AVI_ChunkRead_list( input_thread_t *p_input,
if
(
AVI_SkipBytes
(
p_input
,
12
)
)
{
msg_
Err
(
p_input
,
"cannot enter chunk"
);
msg_
Warn
(
p_input
,
"cannot enter chunk"
);
return
VLC_EGENERIC
;
}
#ifdef AVI_DEBUG
...
...
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