From 972cad77fa13ae312650dd0b7b99e484ffcb7949 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 22 Jun 2012 12:59:29 +0200 Subject: lavfi: remove unnecessary inclusion of libavcodec/avcodec.h in avfilter.h libavfilter API was designed in order to be clarly distinguished from the libavcodec API, including avcodec.h in avfilter.h is not going to help to stick to this principle. The inclusion of libavutil/audioconvert.h in many files was required because avcodec.h includes audioconvert.h. libavfilter/avcodec.h is where the lavc/lavfi interface should be entirely placed. --- libavfilter/af_pan.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavfilter/af_pan.c') diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c index cda40a7cdf..052bf7d3e4 100644 --- a/libavfilter/af_pan.c +++ b/libavfilter/af_pan.c @@ -28,6 +28,7 @@ */ #include +#include "libavutil/audioconvert.h" #include "libavutil/avstring.h" #include "libavutil/opt.h" #include "libswresample/swresample.h" -- cgit v1.2.3