Reduce recursive config.h inclusions in headers

In my opinion, config.h inclusions should be kept to a minimum. MPlayer
code really liked including config.h everywhere, though, even in often
used header files. Try to reduce this.
This commit is contained in:
wm4
2013-12-18 17:12:21 +01:00
parent 5e0424f17f
commit 2c08bf1bd7
16 changed files with 18 additions and 17 deletions

View File

@@ -16,9 +16,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "common/msg.h"
#include "libavutil/avutil.h"
#include <libavutil/pixdesc.h>
#include <libavutil/avutil.h>
#include "config.h"
#include "common/msg.h"
#include "video/img_format.h"
#include "fmt-conversion.h"