From c57507a518169f38b8973c9937be20a70c465f7d Mon Sep 17 00:00:00 2001 From: Marcus Weseloh Date: Fri, 24 Nov 2017 12:23:30 +0100 Subject: [PATCH] Remove statics that are unused if libsndfile is not available --- src/bindings/fluid_filerenderer.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/bindings/fluid_filerenderer.c b/src/bindings/fluid_filerenderer.c index 486dd0d2..3a26f36f 100644 --- a/src/bindings/fluid_filerenderer.c +++ b/src/bindings/fluid_filerenderer.c @@ -100,25 +100,6 @@ static int fluid_file_renderer_parse_options (char *filetype, char *format, static int fluid_file_renderer_find_file_type (char *extension, int *type); static int fluid_file_renderer_find_valid_format (SF_INFO *info); - -#else /* No libsndfile support */ - - -/* File type names. */ -static const char * const type_names[] = { - "raw" -}; - -/* File audio format names. */ -static const char * const format_names[] = { - "s16" -}; - -/* File endian byte order names. */ -static const char * const endian_names[] = { - "cpu" -}; - #endif