Commit 83a9cf36 authored by Steven Liu's avatar Steven Liu

avformat/hlsenc: remove debug message used error level log

Signed-off-by: 's avatarSteven Liu <lq@chinaffmpeg.org>
parent f7e9275f
......@@ -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;
}
......
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