|
Line 0
Link Here
|
|
|
1 |
--- src/subgen-image.c.orig 2019-09-02 09:48:47 UTC |
| 2 |
+++ src/subgen-image.c |
| 3 |
@@ -28,7 +28,7 @@ |
| 4 |
#include <fcntl.h> |
| 5 |
#include <math.h> |
| 6 |
|
| 7 |
-#if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK) |
| 8 |
+#if defined(HAVE_MAGICK) |
| 9 |
#include <stdarg.h> |
| 10 |
#include <magick/api.h> |
| 11 |
#else |
| 12 |
@@ -163,7 +163,7 @@ static void createimage(pict *s, int w, |
| 13 |
} /*if*/ |
| 14 |
} /*createimage*/ |
| 15 |
|
| 16 |
-#if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK) |
| 17 |
+#if defined(HAVE_MAGICK) |
| 18 |
// meaning of A in RGBA swapped in ImageMagick 6.0.0 and GraphicsMagick 1.3.8 |
| 19 |
#if defined(HAVE_MAGICK) |
| 20 |
#define XMAGICK_NEW_RGBA_MINVER 0x600 |
| 21 |
@@ -348,7 +348,7 @@ static int read_pic(stinfo *s, pict *p) |
| 22 |
{ |
| 23 |
if (!p->fname) |
| 24 |
return 0; |
| 25 |
-#if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK) |
| 26 |
+#if defined(HAVE_MAGICK) |
| 27 |
r = read_magick(p); |
| 28 |
#else |
| 29 |
r = read_png(p); |
| 30 |
@@ -1097,14 +1097,14 @@ bool process_subtitle(stinfo *s) |
| 31 |
|
| 32 |
void image_init() |
| 33 |
{ |
| 34 |
-#if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK) |
| 35 |
+#if defined(HAVE_MAGICK) |
| 36 |
InitializeMagick(NULL); |
| 37 |
#endif |
| 38 |
} |
| 39 |
|
| 40 |
void image_shutdown() |
| 41 |
{ |
| 42 |
-#if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK) |
| 43 |
+#if defined(HAVE_MAGICK) |
| 44 |
DestroyMagick(); |
| 45 |
#endif |
| 46 |
} |