[-]
[+]
|
Changed |
libfame.spec
|
|
[-]
[+]
|
Deleted |
libfame-fix-implicit-decl.patch
^
|
@@ -1,30 +0,0 @@
---- src/fame_motion_pmvfast.c.orig 2006-11-13 00:42:30.000000000 +0100
-+++ src/fame_motion_pmvfast.c 2006-11-13 00:42:37.000000000 +0100
-@@ -19,6 +19,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <string.h>
- #include "fame.h"
- #include "fame_malloc.h"
- #include "fame_motion.h"
---- src/fame_rate_simple.c.orig 2006-11-13 00:41:51.000000000 +0100
-+++ src/fame_rate_simple.c 2006-11-13 00:41:59.000000000 +0100
-@@ -19,6 +19,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <string.h>
- #include <math.h>
- #include "fame.h"
- #include "fame_rate_simple.h"
---- src/fame_rate_1param.c.orig 2006-11-13 00:42:12.000000000 +0100
-+++ src/fame_rate_1param.c 2006-11-13 00:42:18.000000000 +0100
-@@ -19,6 +19,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <string.h>
- #include <math.h>
- #include "fame.h"
- #include "fame_rate_1param.h"
|
[-]
[+]
|
Deleted |
libfame-intptr.patch
^
|
@@ -1,22 +0,0 @@
---- src/fame_malloc.c.orig 2006-11-13 00:44:42.000000000 +0100
-+++ src/fame_malloc.c 2006-11-13 00:45:24.000000000 +0100
-@@ -21,6 +21,7 @@
- #define ALIGN 32
-
- #include <stdlib.h>
-+#include <stdint.h>
-
- void* fame_malloc(size_t size)
- {
-@@ -36,9 +37,9 @@
- */
-
- ptr = (unsigned char*) malloc(size+ALIGN);
-- aligned = (unsigned char*) (((unsigned int)ptr & (~(ALIGN-1))) + ALIGN );
-+ aligned = (unsigned char*) (((intptr_t)ptr & (~(ALIGN-1))) + ALIGN );
- padding = aligned - 1;
-- *padding = (ALIGN-1) - ((unsigned int)ptr & (ALIGN-1));
-+ *padding = (ALIGN-1) - ((intptr_t)ptr & (ALIGN-1));
-
- return ((void*)aligned);
- }
|
|
Renamed |
libfame-0.9.1.tar.bz2
^
|
|
Added |
libfame1-0.9.1-0.pm.9.src.rpm
^
|