-
Notifications
You must be signed in to change notification settings - Fork 59
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
Packed (interlaced) audio data #32
Comments
Interleaved (not interlaced)? With Portaudio the easiest is to just use the I'm not opposed to adding adding more formats, but I don't really see the point to add all possible combinations. Support for float and 16bit was added "make the common case fast". I have no interested to write code for other cases, it is easy to convert/de-interleave at application level and call I suppose adding a How did you implement it? |
Yes I was meaning interlaced, paNonInterleaved in portaudio misled me. Thanks!
|
Hi, I re-up this question, I am ready to invest some time for this. Any thought on my last comments? Thank youm BR |
would be for interleaved (not interlaced) stereo only. I suppose the
Then again, I'm probably going to regret this. The current 8,16, 32bit conversion functions are already overkill and converting sample-formats is not the purpose of this lib. The libraries copies data onto the stack for conversion and doing this in the lib cannot be more efficient than application code. |
Hi,
Currently using Portaudio for retrieving audio signal, I saw that ltc decoder does not support interlaced data (for 16bits for instance). I had to create my own template.
I have made a working prototype for s16i template. Any chance to see this update upstream?
The text was updated successfully, but these errors were encountered: