Commit 28b7857d authored by Laurent Aimar's avatar Laurent Aimar

* es_out: msg_Err -> msg_Warn for Program empty. But I still need to

fix it... (it should be annoying only with TS, you may have dead program
entry).
parent 77498fa4
...@@ -756,8 +756,8 @@ static void EsOutDel( es_out_t *out, es_out_id_t *es ) ...@@ -756,8 +756,8 @@ static void EsOutDel( es_out_t *out, es_out_id_t *es )
es->p_pgrm->i_es--; es->p_pgrm->i_es--;
if( es->p_pgrm->i_es == 0 ) if( es->p_pgrm->i_es == 0 )
{ {
msg_Err( p_sys->p_input, "Program doesn't contain anymore ES, " msg_Warn( p_sys->p_input, "Program doesn't contain anymore ES, "
"TODO cleaning ?" ); "TODO cleaning ?" );
} }
if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL; if( p_sys->p_es_audio == es ) p_sys->p_es_audio = NULL;
......
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