summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorminyue@webrtc.org <minyue@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-03-07 08:55:48 +0000
committerminyue@webrtc.org <minyue@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-03-07 08:55:48 +0000
commit1f2820b28dfbbe8917eafee618579608bea200ba (patch)
tree4b9ff1b6bbdde09064d84fb1b14aab396786443f /build
parent9a8232203a0793a3bbd7edc8bba04a4b48e00210 (diff)
downloadwebrtc-1f2820b28dfbbe8917eafee618579608bea200ba.tar.gz
This CL is to add Opus complexity knob and to test it.
As a by-product, a generic tool for testing and comparing the complexity of codecs is added, and new audio files are added to the resources. Three complexity tests are included 1. Default Opus complexity 2. Opus complexity knob 3. Default iSAC complexity (to compare with Opus) The complexity tests are only meant for development reasons and not to be run at bots. The .isolate file is only needed for the APK packaging and test execution on Android. TEST=passes all trybots BUG= R=kjellander@webrtc.org, tina.legrand@webrtc.org, turaj@webrtc.org Review URL: https://webrtc-codereview.appspot.com/8969004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5655 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'build')
-rw-r--r--build/apk_tests.gyp16
-rw-r--r--build/apk_tests_noop.gyp4
2 files changed, 19 insertions, 1 deletions
diff --git a/build/apk_tests.gyp b/build/apk_tests.gyp
index 8464d70f..1df04692 100644
--- a/build/apk_tests.gyp
+++ b/build/apk_tests.gyp
@@ -199,7 +199,21 @@
'includes': [
'../../../build/apk_test.gypi',
],
- },
+ },
+ {
+ 'target_name': 'audio_codec_speed_tests_apk',
+ 'type': 'none',
+ 'variables': {
+ 'test_suite_name': 'audio_codec_speed_tests',
+ 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)audio_codec_speed_tests<(SHARED_LIB_SUFFIX)',
+ },
+ 'dependencies': [
+ '<(webrtc_root)/modules/modules.gyp:audio_codec_speed_tests',
+ ],
+ 'includes': [
+ '../../../build/apk_test.gypi',
+ ],
+ }
],
}
diff --git a/build/apk_tests_noop.gyp b/build/apk_tests_noop.gyp
index daf86e34..ed64863d 100644
--- a/build/apk_tests_noop.gyp
+++ b/build/apk_tests_noop.gyp
@@ -61,5 +61,9 @@
'target_name': 'webrtc_perf_tests_apk',
'type': 'none',
},
+ {
+ 'target_name': 'audio_codec_speed_tests_apk',
+ 'type': 'none',
+ },
],
}