[Pkg-chromium-commit] [SCM] Git repository for pkg-chromium branch, master, updated. debian/20.0.1132.27_r140692-1-2-g62d276b
Giuseppe Iuculano
iuculano at debian.org
Wed Jun 13 10:57:16 UTC 2012
The following commit has been merged in the master branch:
commit 62d276b7308f53f23e0e2f4b4a3a582d4cb9df54
Author: Giuseppe Iuculano <iuculano at debian.org>
Date: Wed Jun 13 12:57:22 2012 +0200
Backported: Use 32-byte alignment in AudioArray if using WEBAUDIO_FFMPEG https://bugs.webkit.org/show_bug.cgi?id=87430
diff --git a/debian/patches/alignment.patch b/debian/patches/alignment.patch
new file mode 100644
index 0000000..0935040
--- /dev/null
+++ b/debian/patches/alignment.patch
@@ -0,0 +1,17 @@
+Index: sid/src/third_party/WebKit/Source/WebCore/platform/audio/AudioArray.h
+===================================================================
+--- sid.orig/src/third_party/WebKit/Source/WebCore/platform/audio/AudioArray.h 2012-05-19 16:58:44.000000000 +0200
++++ sid/src/third_party/WebKit/Source/WebCore/platform/audio/AudioArray.h 2012-06-13 12:56:55.536076062 +0200
+@@ -60,8 +60,11 @@
+
+ unsigned initialSize = sizeof(T) * n;
+
+- // 16-byte alignment for 128bit SIMD.
++#if USE(WEBAUDIO_FFMPEG)
++ const size_t alignment = 32;
++#else
+ const size_t alignment = 16;
++#endif
+
+ if (m_allocation)
+ fastFree(m_allocation);
diff --git a/debian/patches/series b/debian/patches/series
index 311b071..b4b1330 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -23,3 +23,4 @@ vpx.patch
pulseaudio.patch
gcc4.7.patch
sqlite.patch
+alignment.patch
--
Git repository for pkg-chromium
More information about the Pkg-chromium-commit
mailing list