diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index f02b8875a15b25fd0274443e932947853ec9ad41..28ac4477ce8d89bfc0e0ffae4ab183fb253ebcce 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -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; }