diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-07-29 20:49:53 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-31 19:23:00 +0200 |
commit | 45dd1ae1b3c18331f3db2293a9135bc5851e553f (patch) | |
tree | 08ca1a93d8fe836b5516dcc934070f5bb203cb52 /libavfilter/internal.h | |
parent | c2e936de07d054bf476e60445b453bf6b4836820 (diff) | |
download | ffmpeg-45dd1ae1b3c18331f3db2293a9135bc5851e553f.tar.gz |
avfilter: Add some missing FF_API_AVFILTERBUFFER ifdefs
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index bdbbe4498a..40b33afd08 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -26,6 +26,7 @@ #include "avfilter.h" #include "thread.h" +#include "version.h" #if !FF_API_AVFILTERPAD_PUBLIC /** @@ -129,8 +130,10 @@ struct AVFilterInternal { int *ret, int nb_jobs); }; +#if FF_API_AVFILTERBUFFER /** default handler for freeing audio/video buffer when there are no references left */ void ff_avfilter_default_free_buffer(AVFilterBuffer *buf); +#endif /** Tell is a format is contained in the provided list terminated by -1. */ int ff_fmt_is_in(int fmt, const int *fmts); |