diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-12 20:12:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-13 11:11:33 +0200 |
commit | 9d0bfc5052fa73ac8df89ec9992d77b07840fdf0 (patch) | |
tree | 95435f6e28872a5e859dd3e0f468dacf7815ef60 /libavfilter/vf_drawbox.c | |
parent | 84b9fbe05578c8b4058e72bb0b203665a446a95a (diff) | |
download | ffmpeg-9d0bfc5052fa73ac8df89ec9992d77b07840fdf0.tar.gz |
lavfi: make AVFilterPad opaque after two major bumps.
It will allow adding new fields to it without ABI breaks.
Diffstat (limited to 'libavfilter/vf_drawbox.c')
-rw-r--r-- | libavfilter/vf_drawbox.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c index 47db0490a7..eb129a23d8 100644 --- a/libavfilter/vf_drawbox.c +++ b/libavfilter/vf_drawbox.c @@ -29,6 +29,7 @@ #include "libavutil/parseutils.h" #include "avfilter.h" #include "formats.h" +#include "internal.h" #include "video.h" enum { Y, U, V, A }; |