Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What format are the filters expecting for audio data? #58

Open
tdbarth1 opened this issue Jul 1, 2020 · 1 comment
Open

What format are the filters expecting for audio data? #58

tdbarth1 opened this issue Jul 1, 2020 · 1 comment

Comments

@tdbarth1
Copy link

tdbarth1 commented Jul 1, 2020

I am attempting to construct filters for testing, but I am not sure where to get audio data for which to run through the filters and what format the filters expect the data to be in. Any help would be appreciated, thanks!

@Rakib1503052
Copy link

The format is an array of pointers to data arrays. e.g.
float* a[1]; a[0] = new float[44410]; //filter setup process(a,44410);
"a" can have more elements, each pointing to a different array. The filter will treat each of them as separate channels. The audio data goes into the "new" array.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants