1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/*
* Copyright 2005 Timo Hirvonen
*/
#ifndef _OUTPUT_H
#define _OUTPUT_H
#include <sf.h>
extern int soft_vol;
extern int soft_vol_l;
extern int soft_vol_r;
void op_load_plugins(void);
void op_exit_plugins(void);
/*
* select output plugin and open its mixer
*
* errors: OP_ERROR_{ERRNO, NO_PLUGIN}
*/
int op_select(const char *name);
int op_select_any(void);
/*
* open selected plugin
*
* errors: OP_ERROR_{}
*/
int op_open(sample_format_t sf);
/*
* drop pcm data
*
* errors: OP_ERROR_{ERRNO}
*/
int op_drop(void);
/*
* close plugin
*
* errors: OP_ERROR_{}
*/
int op_close(void);
/*
* returns bytes written or error
*
* errors: OP_ERROR_{ERRNO}
*/
int op_write(const char *buffer, int count);
/*
* errors: OP_ERROR_{}
*/
int op_pause(void);
int op_unpause(void);
/*
* returns space in output buffer in bytes or -1 if busy
*/
int op_buffer_space(void);
/*
* errors: OP_ERROR_{}
*/
int op_reset(void);
int op_set_volume(int left, int right);
int op_get_volume(int *left, int *right);
void op_set_soft_vol(int soft);
/*
* errors: OP_ERROR_{NO_PLUGIN, NOT_INITIALIZED, NOT_OPTION}
*/
int op_set_option(unsigned int id, const char *val);
int op_get_option(unsigned int id, char **val);
int op_for_each_option(void (*cb)(unsigned int id, const char *key));
char *op_get_error_msg(int rc, const char *arg);
void op_dump_plugins(void);
char *op_get_current(void);
#endif
|