summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-12-12 14:25:30 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-12-12 14:25:30 -0800
commit3aecec084baded0c3694e5f05ebef21487712a03 (patch)
tree3d057a314962a314fc24cf9e986d469412507c50
parent6d1a63a02a1e75f73a304dab23a0cf807523232d (diff)
parentd5484f109ecbb17e8d37f6ec8dd9c0aace5d6ec7 (diff)
downloadlibvpx-3aecec084baded0c3694e5f05ebef21487712a03.tar
libvpx-3aecec084baded0c3694e5f05ebef21487712a03.tar.gz
libvpx-3aecec084baded0c3694e5f05ebef21487712a03.tar.bz2
libvpx-3aecec084baded0c3694e5f05ebef21487712a03.zip
Merge "x86_abi_support: set LIBVPX_RAND w/vp9-postproc"
-rw-r--r--vpx_ports/x86_abi_support.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx_ports/x86_abi_support.asm b/vpx_ports/x86_abi_support.asm
index 3814ef443..c94b76a06 100644
--- a/vpx_ports/x86_abi_support.asm
+++ b/vpx_ports/x86_abi_support.asm
@@ -395,7 +395,7 @@ section .text
; On Android platforms use lrand48 when building postproc routines. Prior to L
; rand() was not available.
-%if CONFIG_POSTPROC=1
+%if CONFIG_POSTPROC=1 || CONFIG_VP9_POSTPROC=1
%ifdef __ANDROID__
extern sym(lrand48)
%define LIBVPX_RAND lrand48
@@ -403,4 +403,4 @@ extern sym(lrand48)
extern sym(rand)
%define LIBVPX_RAND rand
%endif
-%endif ; CONFIG_POSTPROC
+%endif ; CONFIG_POSTPROC || CONFIG_VP9_POSTPROC