Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2019-02-27 21:30:18 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2019-03-14 13:23:47 +0300
commitd9a911a4fbddcb7a28f64851503521ca6b00d291 (patch)
treea29e2c5434f13088de88fe42994ad55400b6d47e /meson.build
parentdc769f5d44b697a6a8c1fdd975bbab6cd2864574 (diff)
tools/dav1d: make the md5 muxer endian-aware
Fixes tests on big endian architectures.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 1258f89..96b7b1f 100644
--- a/meson.build
+++ b/meson.build
@@ -214,6 +214,8 @@ endif
stackalign_flag = []
stackrealign_flag = []
+cdata.set10('ENDIANNESS_BIG', host_machine.endian() == 'big')
+
if host_machine.cpu_family().startswith('x86')
if get_option('stack_alignment') > 0
stack_alignment = get_option('stack_alignment')