summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_cddb.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/stream/stream_cddb.c b/stream/stream_cddb.c
index 719eb05754..3ec0630897 100644
--- a/stream/stream_cddb.c
+++ b/stream/stream_cddb.c
@@ -711,35 +711,6 @@ static int cddb_get_proto_level(cddb_data_t *cddb_data)
return cddb_http_request("stat", cddb_proto_level_parse, cddb_data);
}
-static int cddb_freedb_sites_parse(HTTP_header_t *http_hdr, cddb_data_t *cddb_data)
-{
- int ret, status;
-
- ret = sscanf(http_hdr->body, "%d ", &status);
- if (ret != 1) {
- mp_tmsg(MSGT_DEMUX, MSGL_ERR, "parse error");
- return -1;
- }
-
- switch (status) {
- case 210:
- // TODO: Parse the sites
- ret = cddb_data->anonymous; // For gcc complaining about unused parameter.
- return 0;
- case 401:
- mp_tmsg(MSGT_DEMUX, MSGL_FIXME, "No sites information available.\n");
- break;
- default:
- mp_tmsg(MSGT_DEMUX, MSGL_FIXME, "unhandled code\n");
- }
- return -1;
-}
-
-static int cddb_get_freedb_sites(cddb_data_t *cddb_data)
-{
- return cddb_http_request("sites", cddb_freedb_sites_parse, cddb_data);
-}
-
static void cddb_create_hello(cddb_data_t *cddb_data)
{
char host_name[51];
@@ -788,8 +759,6 @@ static int cddb_retrieve(cddb_data_t *cddb_data)
return -1;
}
- //cddb_get_freedb_sites(&cddb_data);
-
sprintf(command, "cddb+query+%08lx+%d+%s%d", cddb_data->disc_id,
cddb_data->tracks, offsets, time_len);
ret = cddb_http_request(command, cddb_query_parse, cddb_data);