Files
platform-external-webrtc/webrtc/modules/audio_coding/codecs/isac/isacfix_test.gypi
kma@webrtc.org fa65c851fe Optimized function AllpassFilter2FixDec16() in isac fix for Android Neon platforms.
With an offline test, codec cycles were reduced by 4%.
Review URL: https://webrtc-codereview.appspot.com/936007

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3066 4adac7df-926f-26a2-2b94-8c16560cd09d
2012-11-09 00:39:45 +00:00

43 lines
1.1 KiB
Python

# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
{
'targets': [
# kenny
{
'target_name': 'iSACFixtest',
'type': 'executable',
'dependencies': [
'iSACFix',
],
'include_dirs': [
'./fix/test',
'./fix/interface',
],
'sources': [
'./fix/test/kenny.c',
],
},
{
'target_name': 'isacfix_unittests',
'type': 'executable',
'dependencies': [
'iSACFix',
'<(DEPTH)/testing/gtest.gyp:gtest',
'<(webrtc_root)/test/test.gyp:test_support_main',
],
'sources': [
'fix/source/lpc_masking_model_unittest.cc',
'fix/source/filterbanks_unittest.cc',
],
},
],
}
# TODO(kma): Add bit-exact test for iSAC-fix.