diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-02 02:14:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-02 02:14:02 +0200 |
commit | 44ae7badae9a279824c72599573f3db9cc33dd41 (patch) | |
tree | 6d8e52fcd0829fdaeec6bc3ace0086836c4ab619 /ffmpeg.c | |
parent | 4abc411b97d72080fe9628650f5c1a1d272e7a3d (diff) | |
download | ffmpeg-44ae7badae9a279824c72599573f3db9cc33dd41.tar.gz |
ffmpeg: print muxed packet sizes in debug output too
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -575,10 +575,11 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost) if (debug_ts) { av_log(NULL, AV_LOG_INFO, "muxer <- type:%s " - "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n", + "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n", av_get_media_type_string(ost->st->codec->codec_type), av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base), - av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base) + av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base), + pkt->size ); } |