diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:40:59 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:40:59 +0000 |
commit | 2c5741b857de7d3f82b3a6dcf2558bd735974b53 (patch) | |
tree | 145d3a9dc758618424db54bb772c0f3bc4e8e227 /libavfilter | |
parent | 19dc71045d2833d2b3b77648608687eb687b4af1 (diff) | |
download | ffmpeg-2c5741b857de7d3f82b3a6dcf2558bd735974b53.tar.gz |
Add context to av_log()
Commited in SoC by Vitor Sessak on 2008-02-10 09:05:39
Originally committed as revision 12047 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 9b976ee045..08a7484845 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -96,7 +96,7 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, { AVFilterFormats *formats; - av_log(NULL, AV_LOG_INFO, "auto-inserting filter '%s'\n", + av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n", filt->filter->name); link->dst->inputs[link->dstpad] = NULL; |