6955870806624479723addfae6dcf5d13968796c |
|
13-Jan-2016 |
Peter Kasting <pkasting@google.com> |
Convert channel counts to size_t. IIRC, this was originally requested by ajm during review of the other size_t conversions I did over the past year, and I agreed it made sense, but wanted to do it separately since those changes were already gargantuan. BUG=chromium:81439 TEST=none R=henrik.lundin@webrtc.org, henrika@webrtc.org, kjellander@webrtc.org, minyue@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org Review URL: https://codereview.webrtc.org/1316523002 . Cr-Commit-Position: refs/heads/master@{#11229}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
91d6edef35e7275879c30ce16ecb8b6dc73c6e4a |
|
17-Sep-2015 |
henrikg <henrikg@webrtc.org> |
Add RTC_ prefix to (D)CHECKs and related macros. We must remove dependency on Chromium, i.e. we can't use Chromium's base/logging.h. That means we need to define these macros in WebRTC also when doing Chromium builds. And this causes redefinition. Alternative solutions: * Check if we already have defined e.g. CHECK, and don't define them in that case. This makes us depend on include order in Chromium, which is not acceptable. * Don't allow using the macros in WebRTC headers. Error prone since if someone adds it there by mistake it may compile fine, but later break if a header in added or order is changed in Chromium. That will be confusing and hard to enforce. * Ensure that headers that are included by an embedder don't include our macros. This would require some heavy refactoring to be maintainable and enforcable. * Changes in Chromium for this is obviously not an option. BUG=chromium:468375 NOTRY=true Review URL: https://codereview.webrtc.org/1335923002 Cr-Commit-Position: refs/heads/master@{#9964}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
dce40cf804019a9898b6ab8d8262466b697c56e0 |
|
24-Aug-2015 |
Peter Kasting <pkasting@google.com> |
Update a ton of audio code to use size_t more correctly and in general reduce use of int16_t/uint16_t. This is the upshot of a recommendation by henrik.lundin and kwiberg on an original small change ( https://webrtc-codereview.appspot.com/42569004/#ps1 ) to stop using int16_t just because values could fit in it, and is similar in nature to a previous "mass change to use size_t more" ( https://webrtc-codereview.appspot.com/23129004/ ) which also needed to be split up for review but to land all at once, since, like adding "const", such changes tend to cause a lot of transitive effects. This was be reviewed and approved in pieces: https://codereview.webrtc.org/1224093003 https://codereview.webrtc.org/1224123002 https://codereview.webrtc.org/1224163002 https://codereview.webrtc.org/1225133003 https://codereview.webrtc.org/1225173002 https://codereview.webrtc.org/1227163003 https://codereview.webrtc.org/1227203003 https://codereview.webrtc.org/1227213002 https://codereview.webrtc.org/1227893002 https://codereview.webrtc.org/1228793004 https://codereview.webrtc.org/1228803003 https://codereview.webrtc.org/1228823002 https://codereview.webrtc.org/1228823003 https://codereview.webrtc.org/1228843002 https://codereview.webrtc.org/1230693002 https://codereview.webrtc.org/1231713002 The change is being landed as TBR to all the folks who reviewed the above. BUG=chromium:81439 TEST=none R=andrew@webrtc.org, pbos@webrtc.org TBR=aluebs, andrew, asapersson, henrika, hlundin, jan.skoglund, kwiberg, minyue, pbos, pthatcher Review URL: https://codereview.webrtc.org/1230503003 . Cr-Commit-Position: refs/heads/master@{#9768}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
60d9b332a5391045439bfb6a3a5447973e3d5603 |
|
14-Aug-2015 |
ekmeyerson <ekmeyerson@webrtc.org> |
Integrate Intelligibility with APM - Integrates intelligibility into audio_processing. - Allows modification of reverse stream if intelligibility enabled. - Makes intelligibility available in audioproc_float test. - Adds reverse stream processing to audioproc_float. - (removed) Makes intelligibility toggleable in real time in voe_cmd_test. - Cleans up intelligibility construction, parameters, constants and dead code. TBR=pbos@webrtc.org Review URL: https://codereview.webrtc.org/1234463003 Cr-Commit-Position: refs/heads/master@{#9713}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
b297c5a01f88219da26cffe433804963d1b70f0f |
|
23-Jul-2015 |
pkasting <pkasting@chromium.org> |
Miscellaneous changes split from https://codereview.webrtc.org/1230503003 . These are mostly trivial changes and are separated out just to reduce the diff on that change to the minimum possible. Note explanatory comments on patch set 1. BUG=none TEST=none Review URL: https://codereview.webrtc.org/1235643003 Cr-Commit-Position: refs/heads/master@{#9617}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
7c5304c79151f092efcbef6680c5da366a930da2 |
|
22-Jul-2015 |
Jared Duke <jdduke@chromium.org> |
Allow webrtc compilation with stlport Android has not yet finalized its libc++ build. Allow compilation with stlport by removing several C++11 library usages. BUG=427718,487341,webrtc:4866 R=andrew@webrtc.org Review URL: https://codereview.webrtc.org/1250663007 . Patch from Jared Duke <jdduke@chromium.org>. Cr-Commit-Position: refs/heads/master@{#9616}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
35b72fbceb09031cbd6039e0dbbd44ed24296509 |
|
10-Jul-2015 |
ekm <ekmeyerson@webrtc.org> |
Add new variance update option and unittests for intelligibility - New option for computing variance that is more adaptive with lower complexity. - Fixed related off-by-one errors. - Added intelligibility unittests. - Do not enhance if experiencing variance underflow. R=andrew@webrtc.org, henrik.lundin@webrtc.org Review URL: https://codereview.webrtc.org/1207353002 . Cr-Commit-Position: refs/heads/master@{#9567}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
db4fecfb01ac51e936e4b7496a4929e713080f07 |
|
23-Jun-2015 |
ekm <ekmeyerson@webrtc.org> |
Attempt to reland: Allow intelligibility to compile in apm (https://codereview.webrtc.org/1182323005/) Revert of original: https://codereview.webrtc.org/1187033005/ Changes in original: - Added files to gyp and BUILD - Made minor fixes to get everything to compile and intelligibility_proc to run - Added comments - Auto-reformatting New Changes: - Added <numeric> header to intelligibility_enhancer.cc to address buildbot errors - Switched to use WAV for i/o in intelligibility_proc.cc to address windows errors - clean up Note: Patch 1 duplicates Patch 7 of https://codereview.webrtc.org/1182323005/ R=andrew@webrtc.org Review URL: https://codereview.webrtc.org/1190733004. Cr-Commit-Position: refs/heads/master@{#9486}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
c555b99c13aa25cf891dd34602f1b620b3f33bfb |
|
17-Jun-2015 |
aluebs <aluebs@webrtc.org> |
Revert of Allow intelligibility to compile in apm (patchset #1 id:1 of https://codereview.webrtc.org/1182323005/) Reason for revert: Breaking the build bots: http://build.chromium.org/p/client.webrtc/builders/Mac32%20Release%20%5Blarge%20tests%5D/builds/4544 Fails to compile with this error: ../../webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc:218:25: error: no member named 'accumulate' in namespace 'std' power_target = std::accumulate(clear_variance_.variance(), Original issue's description: > Allow intelligibility to compile in apm > > - Added files to gyp and BUILD > - Made minor fixes to get everything to compile > and intelligibility_proc to run > - Added comments > - Auto-reformatting > > Original cl is at: https://webrtc-codereview.appspot.com/57579004/ > > TBR=aluebs@webrtc.org > > Committed: https://chromium.googlesource.com/external/webrtc/+/b7553dfdbb1ca7779eb0d80b5f509523c9b00086 TBR=ekmeyerson@webrtc.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.webrtc.org/1187033005 Cr-Commit-Position: refs/heads/master@{#9455}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
b7553dfdbb1ca7779eb0d80b5f509523c9b00086 |
|
17-Jun-2015 |
ekm <ekmeyerson@webrtc.org> |
Allow intelligibility to compile in apm - Added files to gyp and BUILD - Made minor fixes to get everything to compile and intelligibility_proc to run - Added comments - Auto-reformatting Original cl is at: https://webrtc-codereview.appspot.com/57579004/ TBR=aluebs@webrtc.org Review URL: https://codereview.webrtc.org/1182323005. Cr-Commit-Position: refs/heads/master@{#9454}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|
030249dd247444687663c4969ff078dc0a4b24ac |
|
15-Jun-2015 |
ekm <ekmeyerson@webrtc.org> |
Initial SIE commit: migrating existing code Moved exact existing intelligibility enhancement implementation into new repository for reference when making further changes. Note: this cl does not add these files to any gyp. Original cl is at https://webrtc-codereview.appspot.com/52719004/ . TBR=aluebs@webrtc.org Review URL: https://codereview.webrtc.org/1177953006. Cr-Commit-Position: refs/heads/master@{#9441}
/external/webrtc/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc
|