X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=audiod.c;h=e66373cc87ed475682655a9dac17baec92144496;hp=8b17d95fba692db0b2dd9126226cb8fb2cb682d5;hb=87c857765884b6d05a2b090fa9509e90d220a2f8;hpb=540e19319a41ee5ed74565d40f9bf49867747b2c diff --git a/audiod.c b/audiod.c index 8b17d95f..e66373cc 100644 --- a/audiod.c +++ b/audiod.c @@ -167,7 +167,7 @@ struct command_task { * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if * \a name is not a supported audio format. */ -int get_audio_format_num(const char *name) +static int get_audio_format_num(const char *name) { int i; @@ -469,20 +469,6 @@ static int get_empty_slot(void) return -E_NO_MORE_SLOTS; } -/** - * get the number of filters - * - * \param audio_format_num the number identifying the audio format - * - * \return the number of filters for the given audio format - * - * \sa struct filter; - */ -int num_filters(int audio_format_num) -{ - return afi[audio_format_num].num_filters; -} - static void open_filters(struct slot_info *s) { struct audio_format_info *a = afi + s->format;