~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to intern/audaspace/intern/AUD_C-API.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-05-12 20:02:22 UTC
  • mfrom: (14.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20120512200222-lznjs2cxzaq96wua
Tags: 2.63a-1
* New upstream bugfix release
  + debian/patches/: re-worked since source code changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
710
710
extern const char* AUD_mixdown(AUD_Sound* sound, unsigned int start, unsigned int length, unsigned int buffersize, const char* filename, AUD_DeviceSpecs specs, AUD_Container format, AUD_Codec codec, unsigned int bitrate);
711
711
 
712
712
/**
 
713
 * Mixes a sound down into multiple files.
 
714
 * \param sound The sound scene to mix down.
 
715
 * \param start The start frame.
 
716
 * \param length The count of frames to write.
 
717
 * \param buffersize How many samples should be written at once.
 
718
 * \param filename The file to write to, the channel number and an underscore are added at the beginning.
 
719
 * \param specs The file's audio specification.
 
720
 * \param format The file's container format.
 
721
 * \param codec The codec used for encoding the audio data.
 
722
 * \param bitrate The bitrate for encoding.
 
723
 * \return An error message or NULL in case of success.
 
724
 */
 
725
extern const char* AUD_mixdown_per_channel(AUD_Sound* sound, unsigned int start, unsigned int length, unsigned int buffersize, const char* filename, AUD_DeviceSpecs specs, AUD_Container format, AUD_Codec codec, unsigned int bitrate);
 
726
 
 
727
/**
713
728
 * Opens a read device and prepares it for mixdown of the sound scene.
714
729
 * \param specs Output audio specifications.
715
730
 * \param sequencer The sound scene to mix down.