diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-07 11:21:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-09 20:32:49 +0200 |
commit | 0b45334a5880d6e2a4b3642adcd5feab8a27a150 (patch) | |
tree | fce910431912967b4cdeabb80c200aaf17ca90fb /libavfilter/internal.h | |
parent | 472fb3bbfaf6fddb33d45688046184e7684c9f71 (diff) | |
download | ffmpeg-0b45334a5880d6e2a4b3642adcd5feab8a27a150.tar.gz |
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.h | 4 |
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 */ |