summaryrefslogtreecommitdiffstats
path: root/third_party/opus
diff options
context:
space:
mode:
authorleozwang@chromium.org <leozwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-20 21:57:39 +0000
committerleozwang@chromium.org <leozwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-20 21:57:39 +0000
commitf09f10d8818b4604244f13e260df8351aaa4c7e4 (patch)
tree79d48dd9d61f29c043c416a27f5c80c1a39a9982 /third_party/opus
parent6f4bee95d86253d225c048acd7efcfd52c3c498d (diff)
downloadchromium_src-f09f10d8818b4604244f13e260df8351aaa4c7e4.zip
chromium_src-f09f10d8818b4604244f13e260df8351aaa4c7e4.tar.gz
chromium_src-f09f10d8818b4604244f13e260df8351aaa4c7e4.tar.bz2
Rename use_opus_floating_point to use_opus_fixed_point.
As Ralph pointed out before, in this CL, use_opus_floating_point is the default flag now, also removed WORDS_BIGENDIAN flag which is incorrect. Review URL: https://chromiumcodereview.appspot.com/11571064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174251 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/opus')
-rw-r--r--third_party/opus/opus.gyp7
1 files changed, 3 insertions, 4 deletions
diff --git a/third_party/opus/opus.gyp b/third_party/opus/opus.gyp
index d273aab..3d0deef 100644
--- a/third_party/opus/opus.gyp
+++ b/third_party/opus/opus.gyp
@@ -7,9 +7,9 @@
'use_system_opus%': 0,
'conditions': [
['OS=="android"', {
- 'use_opus_floating_point%': 0,
+ 'use_opus_fixed_point%': 1,
}, {
- 'use_opus_floating_point%': 1,
+ 'use_opus_fixed_point%': 0,
}],
],
},
@@ -22,7 +22,6 @@
'defines': [
'OPUS_BUILD',
'OPUS_EXPORT=',
- 'WORDS_BIGENDIAN',
],
'include_dirs': [
'src/celt',
@@ -263,7 +262,7 @@
4305, # Disable truncation warning in celt/pitch.c .
],
}],
- ['use_opus_floating_point==1', {
+ ['use_opus_fixed_point==0', {
'include_dirs': [
'src/silk/float',
],