]> git.sesse.net Git - vlc/commitdiff
Bluray: use msg_Info instead of msg_Err.
authorKonstantin Pavlov <thresh@videolan.org>
Wed, 23 May 2012 08:07:25 +0000 (12:07 +0400)
committerKonstantin Pavlov <thresh@videolan.org>
Wed, 23 May 2012 08:21:37 +0000 (12:21 +0400)
modules/access/bluray.c

index 77327e12921b3c8e3a1f4b295e53b2c56c4ff8c3..acc38f1af22ba9c54ac97fd7673ac50afc6f2000 100644 (file)
@@ -440,7 +440,7 @@ static es_out_id_t *esOutAdd( es_out_t *p_out, const es_format_t *p_fmt )
             if ( likely(p_pair != NULL) ) {
                 p_pair->i_id = p_fmt->i_id;
                 p_pair->p_es = p_es;
-                msg_Err( p_out->p_sys->p_demux, "Adding ES %d", p_fmt->i_id );
+                msg_Info( p_out->p_sys->p_demux, "Adding ES %d", p_fmt->i_id );
                 vlc_array_append(&p_sys->es, p_pair);
             }
         }