avformat: Convert some commented-out printf/av_log instances to av_dlog
This commit is contained in:
@@ -952,7 +952,10 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
|
||||
if(pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts > pkt->dts)
|
||||
presentation_delayed = 1;
|
||||
|
||||
// av_log(NULL, AV_LOG_DEBUG, "IN delayed:%d pts:%"PRId64", dts:%"PRId64" cur_dts:%"PRId64" st:%d pc:%p\n", presentation_delayed, pkt->pts, pkt->dts, st->cur_dts, pkt->stream_index, pc);
|
||||
av_dlog(NULL,
|
||||
"IN delayed:%d pts:%"PRId64", dts:%"PRId64" cur_dts:%"PRId64" st:%d pc:%p\n",
|
||||
presentation_delayed, pkt->pts, pkt->dts, st->cur_dts,
|
||||
pkt->stream_index, pc);
|
||||
/* interpolate PTS and DTS if they are not present */
|
||||
//We skip H264 currently because delay and has_b_frames are not reliably set
|
||||
if((delay==0 || (delay==1 && pc)) && st->codec->codec_id != AV_CODEC_ID_H264){
|
||||
@@ -1022,7 +1025,9 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
|
||||
st->cur_dts = pkt->dts;
|
||||
}
|
||||
|
||||
// av_log(NULL, AV_LOG_ERROR, "OUTdelayed:%d/%d pts:%"PRId64", dts:%"PRId64" cur_dts:%"PRId64"\n", presentation_delayed, delay, pkt->pts, pkt->dts, st->cur_dts);
|
||||
av_dlog(NULL,
|
||||
"OUTdelayed:%d/%d pts:%"PRId64", dts:%"PRId64" cur_dts:%"PRId64"\n",
|
||||
presentation_delayed, delay, pkt->pts, pkt->dts, st->cur_dts);
|
||||
|
||||
/* update flags */
|
||||
if (is_intra_only(st->codec->codec_id))
|
||||
@@ -3068,7 +3073,8 @@ static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt){
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
// av_log(s, AV_LOG_DEBUG, "av_write_frame: pts2:%"PRId64" dts2:%"PRId64"\n", pkt->pts, pkt->dts);
|
||||
av_dlog(s, "av_write_frame: pts2:%"PRId64" dts2:%"PRId64"\n",
|
||||
pkt->pts, pkt->dts);
|
||||
st->cur_dts= pkt->dts;
|
||||
st->pts.val= pkt->dts;
|
||||
|
||||
|
Reference in New Issue
Block a user