diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-25 20:50:23 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-25 20:50:23 +0000 |
commit | 4723bc286812ded7150cd543e6348d04683ce997 (patch) | |
tree | d7da4ba10cb8dbbf11b47bf296af0b21e4714183 /libavfilter/internal.h | |
parent | adc7305424187bf58516d73a368e569e9d7dcdb9 (diff) | |
download | ffmpeg-4723bc286812ded7150cd543e6348d04683ce997.tar.gz |
Make avfilter_default_free_buffer() an internal shared symbol, so that
it can be referenced outside defaults.c.
Originally committed as revision 25826 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 37d085da52..8f352ef775 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -57,4 +57,7 @@ int ff_avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx); */ int ff_avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx); +/** default handler for freeing audio/video buffer when there are no references left */ +void ff_avfilter_default_free_buffer(AVFilterBuffer *buf); + #endif /* AVFILTER_INTERNAL_H */ |