Is there a common method for dynamically and concurrently streaming audio from the hard disk out to the 8 possible channels on my soundcard using libsndfile and libjack?

I am writing an audio sampling application in C on Linux, currently I am focusing on playback. I've chosen to use libsndfile and jack for this project and have succeeded in playing wav's from my hard disk by spawning a pthread for each file and writing that file's contents to Jack's ringbuffer--this triggers Jack's process callback to write that ringbuffer's contents to Jacks' actual output ports (right now I have 2 connected).

Ultimately, I'd like to have 6 groups of 8 files. The files that belong to each of these groups is static, but I have the option to dictate each of these groups to output audio to 8 possible channels (one group may output to all 8 channels at once or none at all). There are 48 possible files to play concurrently and asynchronous in nature to each other.

Now I understand that depending on how many channels I'm outputting to (and how much data I'm outputting thru these channels), I'll need to interleave the data differently. I don't think I need help with this.

However, I'm curious if there are any tried and true methods for doing this sort of thing as far as buffering/multithreading? My current thinking is to create 6 different ringbuffers for each file group, each file's thread will take turns writing data from disk to its assigned ringbuffer. At the same time, Jack's process thread will be working, taking turns interleaving and outputting data depending on which channel scheme I feel like using at any given moment.

Is this methodology sound? Can I use multiple Jack ringbuffers?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.