links: rename source and sinks to capture_list and output_lists

This commit is contained in:
Kamil Trzcinski
2023-02-22 13:34:27 +01:00
parent bf14b915eb
commit 7c375f70a6
4 changed files with 39 additions and 39 deletions

View File

@ -23,8 +23,8 @@ typedef struct link_callbacks_s {
} link_callbacks_t;
typedef struct link_s {
buffer_list_t *source; // capture_list
buffer_list_t *sinks[10];
buffer_list_t *capture_list;
buffer_list_t *output_lists[10];
link_callbacks_t callbacks[10];
int n_callbacks;
} link_t;