summaryrefslogtreecommitdiff
path: root/src/sink.c
AgeCommit message (Collapse)AuthorFilesLines
2010-07-22glib-ify datatype, functions etc + header cleanupben1-19/+18
2010-07-15use easier sink_*_get() instead of g_array_indexben1-0/+10
2010-07-15syntax cleanupben1-5/+6
2010-07-15replace sink_input_list implementation with GArrayben1-10/+3
2010-07-15sink_clear() marked static (only private use)ben1-10/+11
2010-07-15replace own sink-list implementation with GArrayben1-83/+19
2010-07-13code cleanupJan Klemkow1-1/+1
2010-07-13change sink-name to sink-deviceJan Klemkow1-0/+4
sink-device is the name of the device
2010-07-13stop setting local pntrs NULL when globals needed (tmp commented out)ben1-2/+7
all *_clear functions get a pointer that should be freed by that function. after freeing they are set to NULL, but thats only in local scope, i.e: the global pointer stays NOT NULL void sink_list_clear(sink_info** sink_list, ...) { [..] free(sink_list); sink_list = NULL; } so if it is really intended, all clear functions need to be changed to: void sink_list_clear(sink_info ***sink_list,...) { [..] free(*sink_list); *sink_list = NULL; }
2010-07-13fix reallocs that saved pointer only in local varsben1-8/+10
2010-07-12wip: bugfix: interfaceJan Klemkow1-1/+7
2010-07-12move sources to src/ben1-0/+93