diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-03-17 12:52:40 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-12 18:02:28 +0200 |
commit | 4ad0693edccdc01dc7415b9efdc96ea5ab0dbf34 (patch) | |
tree | 61e7218df137451129aa1ce325e12f005dc30a3d | |
parent | 2c7158169859eb2dd49a72337f9f3f28347da77a (diff) | |
download | ffmpeg-4ad0693edccdc01dc7415b9efdc96ea5ab0dbf34.tar.gz |
lavf: fix function name in compute_pkt_fields2 av_dlog message
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 2afac163c5..67aa76ad75 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2851,7 +2851,7 @@ static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt){ int delay = FFMAX(st->codec->has_b_frames, !!st->codec->max_b_frames); int num, den, frame_size, i; - av_dlog(s, "av_write_frame: pts:%"PRId64" dts:%"PRId64" cur_dts:%"PRId64" b:%d size:%d st:%d\n", + av_dlog(s, "compute_pkt_fields2: pts:%"PRId64" dts:%"PRId64" cur_dts:%"PRId64" b:%d size:%d st:%d\n", pkt->pts, pkt->dts, st->cur_dts, delay, pkt->size, pkt->stream_index); /* if(pkt->pts == AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE) |