Skip to content
Snippets Groups Projects
Commit 83a9cf36 authored by Steven Liu's avatar Steven Liu
Browse files

avformat/hlsenc: remove debug message used error level log


Signed-off-by: default avatarSteven Liu <lq@chinaffmpeg.org>
parent f7e9275f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment