diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:14:23 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:14:23 +0000 |
commit | 3afcca9dfd22805f8bc921077599a78331bef1c4 (patch) | |
tree | 003587b57239a6f0fc3e0a400351a7a7d0a4c876 | |
parent | 35f3fdf48d8d46e4e02a917146a1dcc10e7ba3eb (diff) | |
download | ffmpeg-3afcca9dfd22805f8bc921077599a78331bef1c4.tar.gz |
Fix misc. warnings
Commited in SoC by Vitor Sessak on 2007-12-21 10:53:16
Originally committed as revision 12106 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/avfilter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 114fd11959..4a48defdb6 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -304,6 +304,9 @@ void avfilter_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats) /** Default handler for query_formats() */ int avfilter_default_query_formats(AVFilterContext *ctx); +void avfilter_formats_changeref(AVFilterFormats **oldref, + AVFilterFormats **newref); + /** * Filter definition. This defines the pads a filter contains, and all the * callback functions used to interact with the filter. |