Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
rnnoise
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
rnnoise
Commits
085d8f48
Commit
085d8f48
authored
4 years ago
by
Luca Barbato
Committed by
petterreinholdtsen
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Document the API
parent
eca42a4b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/rnnoise.h
+40
-0
40 additions, 0 deletions
include/rnnoise.h
with
40 additions
and
0 deletions
include/rnnoise.h
+
40
−
0
View file @
085d8f48
...
...
@@ -51,20 +51,60 @@ extern "C" {
typedef
struct
DenoiseState
DenoiseState
;
typedef
struct
RNNModel
RNNModel
;
/**
* Return the size of DenoiseState
*/
RNNOISE_EXPORT
int
rnnoise_get_size
();
/**
* Return the number of samples processed by rnnoise_process_frame at a time
*/
RNNOISE_EXPORT
int
rnnoise_get_frame_size
();
/**
* Initializes a pre-allocated DenoiseState
*
* If model is NULL the default model is used.
*
* See: rnnoise_create() and rnnoise_model_from_file()
*/
RNNOISE_EXPORT
int
rnnoise_init
(
DenoiseState
*
st
,
RNNModel
*
model
);
/**
* Allocate and initialize a DenoiseState
*
* If model is NULL the default model is used.
*
* The returned pointer MUST be freed with rnnoise_destroy().
*/
RNNOISE_EXPORT
DenoiseState
*
rnnoise_create
(
RNNModel
*
model
);
/**
* Free a DenoiseState produced by rnnoise_create.
*
* The optional custom model must be freed by rnnoise_model_free() after.
*/
RNNOISE_EXPORT
void
rnnoise_destroy
(
DenoiseState
*
st
);
/**
* Denoise a frame of samples
*
* in and out must be at least rnnoise_get_frame_size() large.
*/
RNNOISE_EXPORT
float
rnnoise_process_frame
(
DenoiseState
*
st
,
float
*
out
,
const
float
*
in
);
/**
* Load a model from a file
*
* It must be deallocated with rnnoise_model_free()
*/
RNNOISE_EXPORT
RNNModel
*
rnnoise_model_from_file
(
FILE
*
f
);
/**
* Free a custom model
*
* It must be called after all the DenoiseStates referring to it are freed.
*/
RNNOISE_EXPORT
void
rnnoise_model_free
(
RNNModel
*
model
);
#ifdef __cplusplus
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment