LiVES
1.6.4-svn
|
#include <sys/types.h>
#include <sys/stat.h>
#include "main.h"
#include "audio.h"
#include "events.h"
#include "callbacks.h"
#include "effects.h"
#include "support.h"
#include "../libweed/weed.h"
#include "../libweed/weed-host.h"
#include "../libweed/weed-effects.h"
#include "../libweed/weed-palettes.h"
Macros | |
#define | NSTOREDFDS 16 |
Functions | |
void | audio_free_fnames (void) |
LIVES_INLINE void | sample_silence_dS (float *dst, uint64_t nsamples) |
void | sample_move_d8_d16 (short *dst, unsigned char *src, uint64_t nsamples, size_t tbytes, float scale, int nDstChannels, int nSrcChannels, int swap_sign) |
void | sample_move_d16_d16 (short *dst, short *src, uint64_t nsamples, size_t tbytes, float scale, int nDstChannels, int nSrcChannels, int swap_endian, int swap_sign) |
void | sample_move_d16_d8 (uint8_t *dst, short *src, uint64_t nsamples, size_t tbytes, float scale, int nDstChannels, int nSrcChannels, int swap_sign) |
void | sample_move_d16_float (float *dst, short *src, uint64_t nsamples, uint64_t src_skip, int is_unsigned, float vol) |
void | sample_move_float_float (float *dst, float *src, uint64_t nsamples, uint64_t src_skip, float vol) |
int64_t | sample_move_float_int (void *holding_buff, float **float_buffer, int nsamps, float scale, int chans, int asamps, int usigned, gboolean little_endian, gboolean interleaved, float vol) |
returns frames output | |
int64_t | sample_move_abuf_float (float **obuf, int nchans, int nsamps, int out_arate, float vol) |
int64_t | sample_move_abuf_int16 (short *obuf, int nchans, int nsamps, int out_arate) |
boolean | float_deinterleave (float *fbuffer, int nsamps, int nchans) |
boolean | float_interleave (float *fbuffer, int nsamps, int nchans) |
int64_t | render_audio_segment (gint nfiles, gint *from_files, gint to_file, gdouble *avels, gdouble *fromtime, weed_timecode_t tc_start, weed_timecode_t tc_end, gdouble *chvol, gdouble opvol_start, gdouble opvol_end, lives_audio_buf_t *obuf) |
LIVES_INLINE void | aud_fade (gint fileno, gdouble startt, gdouble endt, gdouble startv, gdouble endv) |
fade in/fade out | |
lives_audio_track_state_t * | get_audio_and_effects_state_at (weed_plant_t *event_list, weed_plant_t *st_event, gboolean get_audstate, gboolean exact) |
void | fill_abuffer_from (lives_audio_buf_t *abuf, weed_plant_t *event_list, weed_plant_t *st_event, gboolean exact) |
void | init_jack_audio_buffers (gint achans, gint arate, gboolean exact) |
void | init_pulse_audio_buffers (gint achans, gint arate, gboolean exact) |
void | free_jack_audio_buffers (void) |
void | free_pulse_audio_buffers (void) |
gboolean | resync_audio (gint frameno) |
lives_audio_buf_t * | audio_cache_init (void) |
void | audio_cache_end (void) |
lives_audio_buf_t * | audio_cache_get_buffer (void) |
gboolean | get_audio_from_plugin (float *fbuffer, int nchans, int arate, int nsamps) |
void | reinit_audio_gen (void) |
gboolean | start_audio_stream (void) |
void | stop_audio_stream (void) |
void | clear_audio_stream (void) |
LIVES_INLINE void | audio_stream (void *buff, size_t nbytes, int fd) |
#define NSTOREDFDS 16 |
LIVES_INLINE void aud_fade | ( | gint | fileno, |
gdouble | startt, | ||
gdouble | endt, | ||
gdouble | startv, | ||
gdouble | endv | ||
) |
fade in/fade out
void audio_cache_end | ( | void | ) |
< tell cache thread to exit when possible
lives_audio_buf_t* audio_cache_get_buffer | ( | void | ) |
lives_audio_buf_t* audio_cache_init | ( | void | ) |
void audio_free_fnames | ( | void | ) |
LIVES_INLINE void audio_stream | ( | void * | buff, |
size_t | nbytes, | ||
int | fd | ||
) |
void clear_audio_stream | ( | void | ) |
void fill_abuffer_from | ( | lives_audio_buf_t * | abuf, |
weed_plant_t * | event_list, | ||
weed_plant_t * | st_event, | ||
gboolean | exact | ||
) |
boolean float_deinterleave | ( | float * | fbuffer, |
int | nsamps, | ||
int | nchans | ||
) |
boolean float_interleave | ( | float * | fbuffer, |
int | nsamps, | ||
int | nchans | ||
) |
void free_jack_audio_buffers | ( | void | ) |
void free_pulse_audio_buffers | ( | void | ) |
lives_audio_track_state_t* get_audio_and_effects_state_at | ( | weed_plant_t * | event_list, |
weed_plant_t * | st_event, | ||
gboolean | get_audstate, | ||
gboolean | exact | ||
) |
gboolean get_audio_from_plugin | ( | float * | fbuffer, |
int | nchans, | ||
int | arate, | ||
int | nsamps | ||
) |
void init_jack_audio_buffers | ( | gint | achans, |
gint | arate, | ||
gboolean | exact | ||
) |
void init_pulse_audio_buffers | ( | gint | achans, |
gint | arate, | ||
gboolean | exact | ||
) |
void reinit_audio_gen | ( | void | ) |
int64_t render_audio_segment | ( | gint | nfiles, |
gint * | from_files, | ||
gint | to_file, | ||
gdouble * | avels, | ||
gdouble * | fromtime, | ||
weed_timecode_t | tc_start, | ||
weed_timecode_t | tc_end, | ||
gdouble * | chvol, | ||
gdouble | opvol_start, | ||
gdouble | opvol_end, | ||
lives_audio_buf_t * | obuf | ||
) |
gboolean resync_audio | ( | gint | frameno | ) |
int64_t sample_move_abuf_float | ( | float ** | obuf, |
int | nchans, | ||
int | nsamps, | ||
int | out_arate, | ||
float | vol | ||
) |
int64_t sample_move_abuf_int16 | ( | short * | obuf, |
int | nchans, | ||
int | nsamps, | ||
int | out_arate | ||
) |
void sample_move_d16_d16 | ( | short * | dst, |
short * | src, | ||
uint64_t | nsamples, | ||
size_t | tbytes, | ||
float | scale, | ||
int | nDstChannels, | ||
int | nSrcChannels, | ||
int | swap_endian, | ||
int | swap_sign | ||
) |
void sample_move_d16_d8 | ( | uint8_t * | dst, |
short * | src, | ||
uint64_t | nsamples, | ||
size_t | tbytes, | ||
float | scale, | ||
int | nDstChannels, | ||
int | nSrcChannels, | ||
int | swap_sign | ||
) |
void sample_move_d16_float | ( | float * | dst, |
short * | src, | ||
uint64_t | nsamples, | ||
uint64_t | src_skip, | ||
int | is_unsigned, | ||
float | vol | ||
) |
void sample_move_d8_d16 | ( | short * | dst, |
unsigned char * | src, | ||
uint64_t | nsamples, | ||
size_t | tbytes, | ||
float | scale, | ||
int | nDstChannels, | ||
int | nSrcChannels, | ||
int | swap_sign | ||
) |
void sample_move_float_float | ( | float * | dst, |
float * | src, | ||
uint64_t | nsamples, | ||
uint64_t | src_skip, | ||
float | vol | ||
) |
int64_t sample_move_float_int | ( | void * | holding_buff, |
float ** | float_buffer, | ||
int | nsamps, | ||
float | scale, | ||
int | chans, | ||
int | asamps, | ||
int | usigned, | ||
gboolean | little_endian, | ||
gboolean | interleaved, | ||
float | vol | ||
) |
returns frames output
LIVES_INLINE void sample_silence_dS | ( | float * | dst, |
uint64_t | nsamples | ||
) |
gboolean start_audio_stream | ( | void | ) |
void stop_audio_stream | ( | void | ) |