summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-03-17 12:52:40 +0100
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-03-18 17:21:48 +0100
commit12bcfe05b45175cc7fc5cc719392c35ee5a3c39c (patch)
tree89e3545dc71d8c4513c38c3ad80eaa3482db806b /libavformat
parent3660b5bca9aa076214e8ee7f6c3cceee8641f31f (diff)
lavf: fix function name in compute_pkt_fields2 av_dlog message
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index e897c09914..b4923bad92 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2914,7 +2914,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)