Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-01-26 12:41:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-26 13:20:25 +0300
commit1e4aab36c237b751c23be161217d989472bfaf20 (patch)
treeaad83d43f5b0cc531623f1351abeaff063b3b72f /source/blender/imbuf
parent19b5f5493cd6a9b60486d570b6a50c7a42a96ae0 (diff)
Cleanup: remove redundant BKE/BLI/BIF headers
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/stereoimbuf.c1
-rw-r--r--source/blender/imbuf/intern/thumbs_blend.c2
-rw-r--r--source/blender/imbuf/intern/util.c15
3 files changed, 8 insertions, 10 deletions
diff --git a/source/blender/imbuf/intern/stereoimbuf.c b/source/blender/imbuf/intern/stereoimbuf.c
index 7c58815c216..61bb8da4f50 100644
--- a/source/blender/imbuf/intern/stereoimbuf.c
+++ b/source/blender/imbuf/intern/stereoimbuf.c
@@ -43,7 +43,6 @@
#include "MEM_guardedalloc.h"
-#include "BLI_threads.h"
#include "BLI_utildefines.h"
#include "BLI_math.h"
diff --git a/source/blender/imbuf/intern/thumbs_blend.c b/source/blender/imbuf/intern/thumbs_blend.c
index 5bdab03e57c..7ffdc0ac388 100644
--- a/source/blender/imbuf/intern/thumbs_blend.c
+++ b/source/blender/imbuf/intern/thumbs_blend.c
@@ -29,8 +29,6 @@
#include <string.h>
#include "BLI_utildefines.h"
-#include "BLI_endian_switch.h"
-#include "BLI_fileops.h"
#include "BLI_linklist.h"
#include "BLI_listbase.h" /* Needed due to import of BLO_readfile.h */
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 38591adbaa2..3c08955e2b3 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -41,7 +41,6 @@
#include "BLI_utildefines.h"
#include "BLI_path_util.h"
#include "BLI_fileops.h"
-#include "BLI_string.h"
#include "imbuf.h"
#include "IMB_imbuf_types.h"
@@ -51,14 +50,16 @@
#include "IMB_anim.h"
#ifdef WITH_FFMPEG
-#include "BKE_global.h" /* G.debug */
-#include <libavcodec/avcodec.h>
-#include <libavformat/avformat.h>
-#include <libavdevice/avdevice.h>
-#include <libavutil/log.h>
+# include "BLI_string.h" /* BLI_vsnprintf */
-#include "ffmpeg_compat.h"
+# include "BKE_global.h" /* G.debug */
+# include <libavcodec/avcodec.h>
+# include <libavformat/avformat.h>
+# include <libavdevice/avdevice.h>
+# include <libavutil/log.h>
+
+# include "ffmpeg_compat.h"
#endif
#define UTIL_DEBUG 0