aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/input/cdda_input_plugin.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/input/cdda_input_plugin.c b/src/input/cdda_input_plugin.c
index a0cb7e14b..63a718c8d 100644
--- a/src/input/cdda_input_plugin.c
+++ b/src/input/cdda_input_plugin.c
@@ -247,30 +247,6 @@ input_cdda_open(const char *uri, GError **error_r)
return &i->base;
}
-
-/* single archive handling */
-static int
-input_cdda_archive_extract_trackno(const char *path)
-{
- long value;
- char *endptr, *str;
-
- //remove .wav
- str = strrchr(path, '.');
- if (str)
- *str = 0;
-
- //remove leading 0's
- while (*path == '0')
- path++;
-
- value = strtol(path, &endptr, 0);
- if (*endptr != 0 || value < 0) {
- return -1;
- }
- return value;
-}
-
static bool
input_cdda_seek(struct input_stream *is,
goffset offset, int whence, GError **error_r)