From 0c8556a2efd78a16d130370c351138faeae7cd33 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 30 Nov 2008 23:11:45 +0100 Subject: [PATCH] Rename filter_chain.c to filter_common.c. --- configure.ac | 6 +++--- error.h | 2 +- filter.h | 2 +- filter_chain.c => filter_common.c | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename filter_chain.c => filter_common.c (98%) diff --git a/configure.ac b/configure.ac index 7cba9450..c80b2610 100644 --- a/configure.ac +++ b/configure.ac @@ -81,7 +81,7 @@ AC_CHECK_FUNCS([atexit dup2 memchr memmove memset \ all_errlist_objs="server mp3_afh afh_common vss command net string signal time daemon stat crypt http_send close_on_fork ipc acl afh fade amp_filter dccp_send fd user_list chunk_queue afs osl aft mood score attribute blob ringbuffer -playlist sha1 rbtree sched audiod grab_client filter_chain wav_filter compress_filter +playlist sha1 rbtree sched audiod grab_client filter_common wav_filter compress_filter http_recv dccp_recv recv_common write_common file_write audiod_command client_common recv stdout filter stdin audioc write client fsck exec send_common" @@ -96,7 +96,7 @@ receivers=" http dccp" senders=" http dccp" filter_cmdline_objs="filter.cmdline compress_filter.cmdline amp_filter.cmdline" -filter_errlist_objs="filter_chain wav_filter compress_filter filter string stdin stdout sched fd amp_filter" +filter_errlist_objs="filter_common wav_filter compress_filter filter string stdin stdout sched fd amp_filter" filter_ldflags="" filters=" compress wav amp" @@ -108,7 +108,7 @@ audiod_cmdline_objs="audiod.cmdline grab_client.cmdline compress_filter.cmdline http_recv.cmdline dccp_recv.cmdline file_write.cmdline client.cmdline audiod_command_list amp_filter.cmdline" audiod_errlist_objs="audiod signal string daemon stat net - time grab_client filter_chain wav_filter compress_filter amp_filter http_recv dccp_recv + time grab_client filter_common wav_filter compress_filter amp_filter http_recv dccp_recv recv_common fd sched write_common file_write audiod_command crypt client_common" audiod_ldflags="" diff --git a/error.h b/error.h index 92aaff5d..7259a4cc 100644 --- a/error.h +++ b/error.h @@ -240,7 +240,7 @@ extern const char **para_errlist[]; PARA_ERROR(INVALID_AUDIOD_CMD, "invalid command"), \ -#define FILTER_CHAIN_ERRORS \ +#define FILTER_COMMON_ERRORS \ PARA_ERROR(UNSUPPORTED_FILTER, "given filter not supported"), \ PARA_ERROR(BAD_FILTER_OPTIONS, "invalid filter option given"), \ PARA_ERROR(FC_EOF, "filter chain: eof"), \ diff --git a/filter.h b/filter.h index 3425ae85..39cec9ba 100644 --- a/filter.h +++ b/filter.h @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file filter.h Filter-related structures and exported symbols from filter_chain.c. */ +/** \file filter.h Filter-related structures and exported symbols from filter_common.c. */ /** The list of supported filters. */ enum filter_enum {FILTER_ENUM}; diff --git a/filter_chain.c b/filter_common.c similarity index 98% rename from filter_chain.c rename to filter_common.c index 0da4533f..29d6c957 100644 --- a/filter_chain.c +++ b/filter_common.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file filter_chain.c Common helper functions for filter input/output. */ +/** \file filter_common.c Common helper functions for filter input/output. */ #include #include -- 2.39.2