From 34546bdb0327aeaf633b5809433e707ca1fa3d1f Mon Sep 17 00:00:00 2001 From: Kieran Kunhya Date: Tue, 26 Nov 2013 20:17:12 +0000 Subject: [PATCH] Use correct WARN log --- libmpegts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmpegts.c b/libmpegts.c index d4715cc..f69b56f 100644 --- a/libmpegts.c +++ b/libmpegts.c @@ -1764,14 +1764,14 @@ int ts_write_frames( ts_writer_t *w, ts_frame_t *frames, int num_frames, uint8_t if( pcr_stop < cur_pcr ) { - syslog( LOG_WARN, "muxDtsIsLessThanPCR: PCR error - Check bitrate of components fits within muxrate \n" ); + syslog( LOG_WARNING, "muxDtsIsLessThanPCR: PCR error - Check bitrate of components fits within muxrate \n" ); //fprintf( stderr, "\n pcr_stop is less than pcr pid: %i pcr_stop: %"PRIi64" pcr: %"PRIi64" \n", pes->stream->pid, pcr_stop, cur_pcr ); } // FIXME complain less if( pes->dts * 300 < cur_pcr ) { - syslog( LOG_WARN, "muxDtsIsLessThanPCR: PCR error - Check bitrate of components fits within muxrate \n" ); + syslog( LOG_WARNING, "muxDtsIsLessThanPCR: PCR error - Check bitrate of components fits within muxrate \n" ); //fprintf( stderr, "\n dts is less than pcr pid: %i dts: %"PRIi64" pcr: %"PRIi64" \n", pes->stream->pid, pes->dts*300, cur_pcr ); }