ffmpeg upgrade from 4.3 to 4.4 / Andrew fixed patches except patch2/B by Freelancer
[goodguy/cinelerra.git] / cinelerra-5.1 / thirdparty / src / libvpx-1.8.2.patch1
1 --- a/vpx_ports/mem.h   2019-12-09 16:09:20.000000000 -0700
2 +++ b/vpx_ports/mem.h   2020-07-31 09:20:22.303406738 -0600
3 @@ -15,7 +15,7 @@
4  #include "vpx/vpx_integer.h"
5  
6  #if (defined(__GNUC__) && __GNUC__) || defined(__SUNPRO_C)
7 -#define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))
8 +#define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(64)))
9  #elif defined(_MSC_VER)
10  #define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val
11  #else