# against the file with absolute path, so to exclude all test directories
# for example use the pattern */test/*
-EXCLUDE_PATTERNS = list.h *.cmdline.* krell.* gui* SFont* write.c gcc-compat.h rc4.h recv.c para.h fade.c config.h sdl_gui.c filter.c slider.c dbadm.c
+EXCLUDE_PATTERNS = list.h *.cmdline.* krell.* gui* SFont* gcc-compat.h rc4.h recv.c para.h fade.c config.h sdl_gui.c filter.c slider.c dbadm.c
# The EXAMPLE_PATH tag can be used to specify one or more files or
# directories that contain example code fragments that are included (see
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*/
+/** \file write.c Paraslash's standalone wav/raw player */
+
#include "para.h"
#include "string.h"
#include "write.cmdline.h"
INIT_WRITE_ERRLISTS;
+/**
+ * check if given buffer contains a valid wave header
+ */
struct check_wav_task {
+ /** the buffer to check */
char *buf;
+ /** number of bytes loaded in \a buf */
size_t *loaded;
+ /** non-zero if end of file was reached */
int *eof;
+ /** number of channels specified in wav header given by \a buf */
unsigned channels;
+ /** samplerate specified in wav header given by \a buf */
unsigned samplerate;
+ /** the task structure for this task */
struct task task;
};
+/**
+ * delay writing until given time
+ */
struct initial_delay_task {
+ /** the time the first data should be written out */
struct timeval start_time;
+ /** the task structure for this task */
struct task task;
};
struct initial_delay_task idt;
static struct writer_node_group *wng;
+/** length of a standard wav header */
#define WAV_HEADER_LEN 44
/**
s->timeout = diff;
}
+/**
+ * all log messages are written to stderr
+ *
+ * \param ll: loglevel
+ * \param fmt: format string
+ */
void para_log(int ll, const char* fmt,...)
{
va_list argp;
register_task(&idt.task);
}
+/**
+ * para_write's main function
+ *
+ * It registers the stdin task, the check_wav_task, the task for initial delay
+ * and all tasks for actually writing out the stream.
+ *
+ */
int main(int argc, char *argv[])
{
int ret = -E_WRITE_SYNTAX;