diff options
author | George Marques <george@gmarqu.es> | 2015-10-02 14:20:50 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2015-10-02 14:25:38 -0300 |
commit | 6e87314d83a9beab56fdd115277e230ef683c53d (patch) | |
tree | 31f1ec4669cf2e54162d4b68ba2edbea95751ee6 /platform/flash/detect.py | |
parent | 2c45ee5e1ce939bcef32129ac01944f3995269f4 (diff) |
Add support for Opus audio format
Diffstat (limited to 'platform/flash/detect.py')
-rw-r--r-- | platform/flash/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/flash/detect.py b/platform/flash/detect.py index 5507ce5177..f079f21fdd 100644 --- a/platform/flash/detect.py +++ b/platform/flash/detect.py @@ -89,6 +89,9 @@ def configure(env): #env.Append(CXXFLAGS=['-fno-access-control']) + if(env["opus"]=="yes"): + env.opus_fixed_point="yes" + if (env["target"]=="release"): env.Append(CCFLAGS=['-O4', '-ffast-math','-fomit-frame-pointer']) |