File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -733,9 +733,9 @@ int sceneChangePercent;
733
733
bool lastFrameWasBlack = false;
734
734
bool lastFrameWasSceneChange = false;
735
735
736
- #include <libavutil/avutil.h> // only for DECLARE_ALIGNED
737
- static DECLARE_ALIGNED(32, long, histogram) [256];
738
- static DECLARE_ALIGNED(32, long, lastHistogram) [256];
736
+
737
+ static long histogram[256];
738
+ static long lastHistogram[256];
739
739
740
740
#define MAXCSLENGTH 400*300
741
741
#define MAXCUTSCENES 8
@@ -10097,7 +10097,7 @@ void LoadCutScene(const char *filename)
10097
10097
#define OWN_HISTOGRAM_WIDTH 4
10098
10098
#define OWN_HISTOGRAM_HEIGHT 256
10099
10099
10100
- static DECLARE_ALIGNED(32, int, own_histogram) [OWN_HISTOGRAM_WIDTH][OWN_HISTOGRAM_HEIGHT];
10100
+ static int own_histogram[OWN_HISTOGRAM_WIDTH][OWN_HISTOGRAM_HEIGHT];
10101
10101
int scan_step;
10102
10102
10103
10103
#define SCAN_MULTI
You can’t perform that action at this time.
0 commit comments