Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(751)

Unified Diff: webrtc/modules/audio_processing/ns/noise_suppression.h

Issue 1654443004: Surface the noise estimate of the NS to be used by other components (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Make pointers const Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/ns/noise_suppression.h
diff --git a/webrtc/modules/audio_processing/ns/noise_suppression.h b/webrtc/modules/audio_processing/ns/noise_suppression.h
index 8018118b60065f3cb422907f1011f5504b641cc9..ac1dd2747b397c49bf70ff94485170bf299594c7 100644
--- a/webrtc/modules/audio_processing/ns/noise_suppression.h
+++ b/webrtc/modules/audio_processing/ns/noise_suppression.h
@@ -109,6 +109,24 @@ void WebRtcNs_Process(NsHandle* NS_inst,
*/
float WebRtcNs_prior_speech_probability(NsHandle* handle);
+/* Returns a pointer to the noise estimate per frequency bin. The number of
+ * frequency bins can be get using WebRtcNs_num_freq().
+ *
+ * Input
+ * - handle : Noise suppression instance.
+ *
+ * Return value : Pointer to the noise estimate per frequency bin.
+ * NULL pointer - NULL pointer or uninitialized instance.
hlundin-webrtc 2016/02/08 10:12:32 "NULL pointer - NULL pointer"? Suggest: "Returns N
aluebs-webrtc 2016/02/09 00:01:43 Done.
+ */
+const float* WebRtcNs_noise_estimate(NsHandle* handle);
+
+/* Returns the number of frequency bins, which is the length of the noise
+ * estimate for example.
+ *
+ * Return value : Number of frequency bins.
+ */
+size_t WebRtcNs_num_freq();
+
#ifdef __cplusplus
}
#endif

Powered by Google App Engine
This is Rietveld 408576698