/* SPDX-License-Identifier: GPL-2.0 */ /** \file ringbuffer.h Exported symbols from ringbuffer.c. */ struct ringbuffer; struct ringbuffer *ringbuffer_new(unsigned size); void *ringbuffer_add(struct ringbuffer *rb, void *data); void *ringbuffer_get(struct ringbuffer *rb, int num); unsigned ringbuffer_filled(struct ringbuffer *rb); void ringbuffer_flush(struct ringbuffer *rb, void (*free_func)(void *)); araslash.git' title='paraslash Git repository'/>
summaryrefslogtreecommitdiff
path: root/fec.c (unfollow)
Commit message (Expand)Author
2009-11-10paraslash 0.4.0v0.4.0Andre Noll
2009-11-07alsa: Avoid using 0 as a NULL pointer.Andre Noll
2009-11-07fecdec_filter: Avoid potentially expensive pointer subtraction.Andre Noll
2009-11-07Make some blob functions static.Andre Noll
2009-11-06Replace assertion for invalid audio formats by a runtime check.Andre Noll
2009-11-06server: Fix assignment of afs_pid.Andre Noll
2009-11-05wng: Avoid buffer underruns due to filter chain output buffer constraints.Andre Noll
2009-11-05oss_post_select(): Kill unused attribute for the struct sched parameter.Andre Noll
2009-11-05oss_pre_select(): Fix check for empty infput buffer.Andre Noll
2009-10-24vss: Fix computation of extra slices.Andre Noll
2009-10-22populate_user_list(): Use correct buffer size.Andre Noll
2009-10-22daemon: Avoid using MAXLINE.Andre Noll
2009-10-22drop_privileges_or_die(): Check return value of setuid().Andre Noll
2009-10-22fecdec: Fix decoding of the audio file header.Andre Noll
2009-10-16Fix error message in case of missing sys/soundcard.h.Andre Noll
2009-10-16Fix compilation on MacOS.Andre Noll
2009-10-07Makefile.in: Introduce quiet mode and use it by default.Andre Noll
2009-10-06Add *_command_list.c to .gitignore.Andre Noll
2009-10-06Add GIT-VERSION-FILE to .gitignore.Andre Noll
2009-10-06Use para_malloc() instead of malloc() everywhere.Andre Noll
2009-10-06ogg: retry ov_open_callbacks() also on OV_EBADHEADER errors.Andre Noll
2009-10-04Put the git version into all executables.Andre Noll
2009-10-01.gitignore: Ignore the objects directory.Andre Noll