Commit 71b608cb authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

demux: rar: change msg level

Compressed files are just not handled by filter. not an error

(cherry picked from commit ba3b29824b968592fedc1e60165cc61a886f65e3)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent b0d898ab
...@@ -197,7 +197,7 @@ static int SkipFile(stream_t *s, int *count, rar_file_t ***file, ...@@ -197,7 +197,7 @@ static int SkipFile(stream_t *s, int *count, rar_file_t ***file,
rar_file_t *current = NULL; rar_file_t *current = NULL;
if (method != 0x30) { if (method != 0x30) {
msg_Warn(s, "Ignoring compressed file %s (method=0x%2.2x)", name, method); msg_Dbg(s, "Ignoring compressed file %s (method=0x%2.2x)", name, method);
goto exit; goto exit;
} }
......
...@@ -76,7 +76,7 @@ int RarStreamOpen(vlc_object_t *object) ...@@ -76,7 +76,7 @@ int RarStreamOpen(vlc_object_t *object)
RarParse(s->p_source, &count, &files, true )) || count == 0 ) RarParse(s->p_source, &count, &files, true )) || count == 0 )
{ {
stream_Seek(s->p_source, position); stream_Seek(s->p_source, position);
msg_Err(s, "Invalid or unsupported RAR archive"); msg_Info(s, "Invalid or unsupported RAR archive");
free(files); free(files);
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment