sws_utils: don't recursively include libswscale header

Add libswscale includes where they are actually needed instead.
This commit is contained in:
wm4 2013-07-18 13:46:05 +02:00
parent 4fd06a78ae
commit 7f88e36911
5 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,7 @@
#include <math.h>
#include <inttypes.h>
#include <libswscale/swscale.h>
#include <libavutil/common.h>
#include "core/mp_common.h"

View File

@ -22,6 +22,8 @@
#include <inttypes.h>
#include <sys/types.h>
#include <libswscale/swscale.h>
#include "config.h"
#include "core/mp_msg.h"
#include "core/options.h"

View File

@ -21,6 +21,7 @@
#include <string.h>
#include <sys/types.h>
#include <libswscale/swscale.h>
#include <libavutil/common.h>
#include "config.h"

View File

@ -18,6 +18,7 @@
#include <assert.h>
#include <libswscale/swscale.h>
#include <libavutil/opt.h>
#include "sws_utils.h"

View File

@ -2,7 +2,6 @@
#define MPLAYER_SWS_UTILS_H
#include <stdbool.h>
#include <libswscale/swscale.h>
#include "mp_image.h"