![]() |
pl-nk v0.4.5
Plonk|Plink|Plank are a set of cross-platform C/C++ frameworks for audio software development
|
An audio file writer. More...
Typedefs | |
| typedef struct PlankAudioFileWriter * | PlankAudioFileWriterRef |
| An opaque reference to the Plank AudioFileWriter object. | |
Functions | |
| PlankAudioFileWriterRef | pl_AudioFileWriter_CreateAndInit () |
| Create and intitialise a Plank AudioFileWriter object and return an oqaque reference to it. | |
| PlankAudioFileWriterRef | pl_AudioFileWriter_Create () |
| Create a Plank AudioFileWriter object and return an oqaque reference to it. | |
| PlankResult | pl_AudioFileWriter_Init (PlankAudioFileWriterRef p) |
| Inititalise a Plank AudioFileWriter object. | |
| PlankResult | pl_AudioFileWriter_DeInit (PlankAudioFileWriterRef p) |
| Deinitialise a Plank AudioFileWriter object. | |
| PlankResult | pl_AudioFileWriter_Destroy (PlankAudioFileWriterRef p) |
| Destroy a Plank AudioFileWriter object. | |
| PlankFileRef | pl_AudioFileWriter_GetFile (PlankAudioFileWriterRef p) |
| Gets the underlying Plank File object. | |
| PlankAudioFileFormatInfo * | pl_AudioFileWriter_GetFormatInfo (PlankAudioFileWriterRef p) |
| Get format before open. | |
An audio file writer.
| typedef struct PlankAudioFileWriter* PlankAudioFileWriterRef |
An opaque reference to the Plank AudioFileWriter object.
| PlankAudioFileWriterRef pl_AudioFileWriter_Create | ( | ) |
Create a Plank AudioFileWriter object and return an oqaque reference to it.
| PlankAudioFileWriterRef pl_AudioFileWriter_CreateAndInit | ( | ) |
Create and intitialise a Plank AudioFileWriter object and return an oqaque reference to it.
---
| PlankResult pl_AudioFileWriter_DeInit | ( | PlankAudioFileWriterRef | p | ) |
Deinitialise a Plank AudioFileWriter object.
| p | The Plank AudioFileWriter object. |
| PlankResult pl_AudioFileWriter_Destroy | ( | PlankAudioFileWriterRef | p | ) |
Destroy a Plank AudioFileWriter object.
| p | The Plank AudioFileWriter object. |
| PlankFileRef pl_AudioFileWriter_GetFile | ( | PlankAudioFileWriterRef | p | ) |
Gets the underlying Plank File object.
This is the raw file object the is performing the fundamental file access operations.
| p | The Plank AudioFileWriter object. |
| PlankAudioFileFormatInfo* pl_AudioFileWriter_GetFormatInfo | ( | PlankAudioFileWriterRef | p | ) |
Get format before open.
Returns null if the file is already open.
| PlankResult pl_AudioFileWriter_Init | ( | PlankAudioFileWriterRef | p | ) |
Inititalise a Plank AudioFileWriter object.
| p | The Plank AudioFileWriter object. |
1.7.4