From 07feec7ea6437799e7faac1e83b287243e825e0f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 22 Dec 2010 08:29:49 +0100 Subject: input/cdda: remove unused function input_cdda_archive_extract_trackno() --- src/input/cdda_input_plugin.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'src/input') 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) -- cgit v1.2.3