Start to merge in cue parsing from cuetools. Also moves forward CDTEXT

from a different direction.
This commit is contained in:
rocky
2004-07-09 01:05:31 +00:00
parent e4a0a1fa82
commit ed6f60868d
10 changed files with 475 additions and 109 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: cdio.c,v 1.57 2004/07/08 01:28:00 rocky Exp $
$Id: cdio.c,v 1.58 2004/07/09 01:05:32 rocky Exp $
Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
@@ -39,7 +39,7 @@
#include <cdio/logging.h>
#include "cdio_private.h"
static const char _rcsid[] = "$Id: cdio.c,v 1.57 2004/07/08 01:28:00 rocky Exp $";
static const char _rcsid[] = "$Id: cdio.c,v 1.58 2004/07/09 01:05:32 rocky Exp $";
const char *track_format2str[6] =
@@ -212,22 +212,6 @@ scan_for_driver(driver_id_t start, driver_id_t end,
return NULL;
}
/*!
Return the value associatied with key. NULL is returned if obj is NULL
or "key" does not exist.
*/
CDText_data_t *
cdio_cdtext_query (const CdIo *obj)
{
if (obj == NULL) return NULL;
if (obj->op.get_arg) {
return obj->op.cdtext_query (obj->env);
} else {
return NULL;
}
}
const char *
cdio_driver_describe(driver_id_t driver_id)
{