]> git.sesse.net Git - vlc/commitdiff
demux: rar: change msg level
authorFrancois Cartegnie <fcvlcdev@free.fr>
Tue, 22 Jul 2014 03:56:43 +0000 (12:56 +0900)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Wed, 23 Jul 2014 04:14:15 +0000 (13:14 +0900)
Compressed files are just not handled by filter. not an error

modules/access/rar/rar.c
modules/access/rar/stream.c

index 55afd212951026c78a247ddc4ac7edfcb330284f..c644c4a849fdc84f6d8137ca445e82b75505b457 100644 (file)
@@ -197,7 +197,7 @@ static int SkipFile(stream_t *s, int *count, rar_file_t ***file,
 
     rar_file_t *current = NULL;
     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;
     }
 
index 2655e3e371f4850bb51ad01d5b2a673cf8359f4a..7929d97b943537ba77b7917c6fbb1d557a5fab30 100644 (file)
@@ -76,7 +76,7 @@ int RarStreamOpen(vlc_object_t *object)
          RarParse(s->p_source, &count, &files, true )) || count == 0 )
     {
         stream_Seek(s->p_source, position);
-        msg_Err(s, "Invalid or unsupported RAR archive");
+        msg_Info(s, "Invalid or unsupported RAR archive");
         free(files);
         return VLC_EGENERIC;
     }