diff --git a/libavformat/utils.c b/libavformat/utils.c index b6f8af1d090f3c7031238a4e5436aba05d6bd7b5..d75ce41fb7f61f9b0ac57f157afbe6cbe77bedbd 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3092,7 +3092,8 @@ int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt){ if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->size==0) return 0; -//av_log(NULL, AV_LOG_DEBUG, "av_interleaved_write_frame %d %"PRId64" %"PRId64"\n", pkt->size, pkt->dts, pkt->pts); + av_dlog(s, "av_interleaved_write_frame size:%d dts:%"PRId64" pts:%"PRId64"\n", + pkt->size, pkt->dts, pkt->pts); if(compute_pkt_fields2(s, st, pkt) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) return -1;