diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-02-01 15:48:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-04 03:08:09 +0100 |
commit | 057f3d2763ee72e9c2f4e30bd2cd5e3c0ad4d431 (patch) | |
tree | 88973fe500dc4a1ee9ea6cd6b5bae0339b7b2f69 | |
parent | 8904a0f1eefab90b29690dc5caddc0e6cfafc200 (diff) | |
download | ffmpeg-057f3d2763ee72e9c2f4e30bd2cd5e3c0ad4d431.tar.gz |
Log debug information in filter_samples().
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 5fce60c3a9fbb21e580bad9165bf19d86ee7d96f)
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index aad3a5b0b1..872ca2384f 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -479,6 +479,8 @@ void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref) void (*filter_samples)(AVFilterLink *, AVFilterBufferRef *); AVFilterPad *dst = link->dstpad; + FF_DPRINTF_START(NULL, filter_samples); ff_dlog_link(NULL, link, 1); + if (!(filter_samples = dst->filter_samples)) filter_samples = avfilter_default_filter_samples; |