Browse Source

avformat/hlsenc: remove debug message used error level log

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
tags/n3.3
Steven Liu 9 years ago
parent
commit
83a9cf3603
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      libavformat/hlsenc.c

+ 0
- 1
libavformat/hlsenc.c View File

@@ -1248,7 +1248,6 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
hls->duration = (double)(pkt->pts - hls->end_pts)
* st->time_base.num / st->time_base.den;
hls->dpp = (double)(pkt->duration) * st->time_base.num / st->time_base.den;
av_log(s, AV_LOG_ERROR, "hls->dpp = [%lf]\n", hls->dpp);
} else {
hls->duration += (double)(pkt->duration) * st->time_base.num / st->time_base.den;
}


Loading…
Cancel
Save