summaryrefslogtreecommitdiff
path: root/libavfilter/internal.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-07 11:21:38 +0200
committerAnton Khirnov <anton@khirnov.net>2012-05-09 20:32:49 +0200
commit0b45334a5880d6e2a4b3642adcd5feab8a27a150 (patch)
treefce910431912967b4cdeabb80c200aaf17ca90fb /libavfilter/internal.h
parent472fb3bbfaf6fddb33d45688046184e7684c9f71 (diff)
lavfi: move audio-related functions to a separate file.
This is easier to follow than having them randomly scattered in avfilter.c and defaults.c.
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r--libavfilter/internal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index 0630e9b7d6..a5b3f788da 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -55,4 +55,8 @@ void ff_avfilter_default_free_buffer(AVFilterBuffer *buf);
/** Tell is a format is contained in the provided list terminated by -1. */
int ff_fmt_is_in(int fmt, const int *fmts);
+#define FF_DPRINTF_START(ctx, func) av_dlog(NULL, "%-16s: ", #func)
+
+void ff_dlog_link(void *ctx, AVFilterLink *link, int end);
+
#endif /* AVFILTER_INTERNAL_H */