summaryrefslogtreecommitdiffstats
path: root/src/gd-1-fix-libvpx.patch
diff options
context:
space:
mode:
authorGary KL Tam <kltam327@gmail.com>2015-06-23 05:00:18 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2015-06-23 05:00:18 (GMT)
commit9816446b2eee843f0a919ab9531d0381913ed8da (patch)
tree03d8db013fc5227a6ce8c2cc960afbea8bba061e /src/gd-1-fix-libvpx.patch
parent697251a497583ed446012eea90a4b55f509cf4cc (diff)
downloadmxe-9816446b2eee843f0a919ab9531d0381913ed8da.zip
mxe-9816446b2eee843f0a919ab9531d0381913ed8da.tar.gz
mxe-9816446b2eee843f0a919ab9531d0381913ed8da.tar.bz2
gd: Fix build failure
Diffstat (limited to 'src/gd-1-fix-libvpx.patch')
-rw-r--r--src/gd-1-fix-libvpx.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/gd-1-fix-libvpx.patch b/src/gd-1-fix-libvpx.patch
new file mode 100644
index 0000000..c3d8046
--- /dev/null
+++ b/src/gd-1-fix-libvpx.patch
@@ -0,0 +1,30 @@
+This file is part of MXE.
+See index.html for further information.
+
+This patch has been taken from:
+https://github.com/libgd/libgd/commit/d41eb72cd4545c394578332e5c102dee69e02ee8
+
+--- a/src/webpimg.c 2013-06-25 10:58:23.000000000 +0100
++++ b/src/webpimg.c 2015-06-20 21:35:50.345100568 +0100
+@@ -711,14 +711,14 @@
+ codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0);
+ codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2);
+
+- vpx_img_wrap(&img, IMG_FMT_I420,
++ vpx_img_wrap(&img, VPX_IMG_FMT_I420,
+ y_width, y_height, 16, (uint8*)(Y));
+- img.planes[PLANE_Y] = (uint8*)(Y);
+- img.planes[PLANE_U] = (uint8*)(U);
+- img.planes[PLANE_V] = (uint8*)(V);
+- img.stride[PLANE_Y] = y_stride;
+- img.stride[PLANE_U] = uv_stride;
+- img.stride[PLANE_V] = uv_stride;
++ img.planes[VPX_PLANE_Y] = (uint8*)(Y);
++ img.planes[VPX_PLANE_U] = (uint8*)(U);
++ img.planes[VPX_PLANE_V] = (uint8*)(V);
++ img.stride[VPX_PLANE_Y] = y_stride;
++ img.stride[VPX_PLANE_U] = uv_stride;
++ img.stride[VPX_PLANE_V] = uv_stride;
+
+ res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY);
+