]> git.sesse.net Git - vlc/commitdiff
* es_out: msg_Err -> msg_Warn for Program empty. But I still need to
authorLaurent Aimar <fenrir@videolan.org>
Sun, 29 Aug 2004 19:36:41 +0000 (19:36 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 29 Aug 2004 19:36:41 +0000 (19:36 +0000)
fix it... (it should be annoying only with TS, you may have dead program
entry).

src/input/es_out.c

index c09cfea441f4106e0052b7bd18b2f031b3906ff7..46da448b070b0de142c8162963eecfc2c045050c 100644 (file)
@@ -756,8 +756,8 @@ static void EsOutDel( es_out_t *out, es_out_id_t *es )
     es->p_pgrm->i_es--;
     if( es->p_pgrm->i_es == 0 )
     {
-        msg_Err( p_sys->p_input, "Program doesn't contain anymore ES, "
-                 "TODO cleaning ?" );
+        msg_Warn( p_sys->p_input, "Program doesn't contain anymore ES, "
+                  "TODO cleaning ?" );
     }
 
     if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL;