[vlc-commits] input: es_out: lower RESET_PCR warning to debug level
    Francois Cartegnie 
    git at videolan.org
       
    Wed Mar 23 08:22:28 CET 2016
    
    
  
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Mar 23 08:20:47 2016 +0100| [1f7abfe0c1768e4b02d18729faf16d3497c81963] | committer: Francois Cartegnie
input: es_out: lower RESET_PCR warning to debug level
Being demux issued or related to a previous error message,
we don't need to bug user about this.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1f7abfe0c1768e4b02d18729faf16d3497c81963
---
 src/input/es_out.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index ad7dcd6..a5aee4d 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -2397,7 +2397,7 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
     }
 
     case ES_OUT_RESET_PCR:
-        msg_Err( p_sys->p_input, "ES_OUT_RESET_PCR called" );
+        msg_Dbg( p_sys->p_input, "ES_OUT_RESET_PCR called" );
         EsOutChangePosition( out );
         return VLC_SUCCESS;
 
    
    
More information about the vlc-commits
mailing list