diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-09-24 13:58:45 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-09-25 22:47:51 +0200 |
commit | dd91499b6645e0c185b4156d07849b0e0735312f (patch) | |
tree | 96efe7fe6848503c996bd3d79928ae7de95e52c6 /libavfilter | |
parent | e64de2ad1adf419f42097385d29728b18401f1f1 (diff) | |
download | ffmpeg-dd91499b6645e0c185b4156d07849b0e0735312f.tar.gz |
lavfi: add debug trace when processing events
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 783fda5c2e..63085dc999 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -572,6 +572,9 @@ void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref) link->cur_buf = picref; while(cmd && cmd->time <= picref->pts * av_q2d(link->time_base)){ + av_log(link->dst, AV_LOG_DEBUG, + "Processing command time:%f command:%s arg:%s\n", + cmd->time, cmd->command, cmd->arg); avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags); command_queue_pop(link->dst); cmd= link->dst->command_queue; |