Add cdchange program.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# $Id: Makefile.am,v 1.31 2005/11/12 10:27:04 rocky Exp $
|
# $Id: Makefile.am,v 1.32 2006/01/24 02:25:07 rocky Exp $
|
||||||
#
|
#
|
||||||
# Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
# Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
||||||
#
|
#
|
||||||
@@ -26,26 +26,30 @@ endif
|
|||||||
if BUILD_CD_PARANOIA
|
if BUILD_CD_PARANOIA
|
||||||
paranoia_progs = paranoia paranoia2
|
paranoia_progs = paranoia paranoia2
|
||||||
endif
|
endif
|
||||||
noinst_PROGRAMS = audio cdtext device drives eject iso1 iso2 iso3 isofuzzy \
|
noinst_PROGRAMS = audio cdchange cdtext device drives eject \
|
||||||
|
iso1 iso2 iso3 isofuzzy \
|
||||||
mmc1 mmc2 $(paranoia_progs) tracks \
|
mmc1 mmc2 $(paranoia_progs) tracks \
|
||||||
sample3 sample4 udf1 udf2
|
sample3 sample4 udf1 udf2
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)
|
INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)
|
||||||
|
|
||||||
audio_DEPENDENCIES = $(LIBCDIO_DEPS)
|
audio_DEPENDENCIES = $(LIBCDIO_DEPS)
|
||||||
audio_LDADD = $(LIBCDIO_LIBS)
|
audio_LDADD = $(LIBCDIO_LIBS)
|
||||||
|
|
||||||
cdtext_DEPENDENCIES = $(LIBCDIO_DEPS)
|
cdchange_DEPENDENCIES = $(LIBCDIO_DEPS)
|
||||||
cdtext_LDADD = $(LIBCDIO_LIBS)
|
cdchange_LDADD = $(LIBCDIO_LIBS)
|
||||||
|
|
||||||
device_DEPENDENCIES = $(LIBCDIO_DEPS)
|
cdtext_DEPENDENCIES = $(LIBCDIO_DEPS)
|
||||||
device_LDADD = $(LIBCDIO_LIBS)
|
cdtext_LDADD = $(LIBCDIO_LIBS)
|
||||||
|
|
||||||
drives_DEPENDENCIES = $(LIBCDIO_DEPS)
|
device_DEPENDENCIES = $(LIBCDIO_DEPS)
|
||||||
drives_LDADD = $(LIBCDIO_LIBS)
|
device_LDADD = $(LIBCDIO_LIBS)
|
||||||
|
|
||||||
eject_DEPENDENCIES = $(LIBCDIO_DEPS)
|
drives_DEPENDENCIES = $(LIBCDIO_DEPS)
|
||||||
eject_LDADD = $(LIBCDIO_LIBS)
|
drives_LDADD = $(LIBCDIO_LIBS)
|
||||||
|
|
||||||
|
eject_DEPENDENCIES = $(LIBCDIO_DEPS)
|
||||||
|
eject_LDADD = $(LIBCDIO_LIBS)
|
||||||
|
|
||||||
if BUILD_CD_PARANOIA
|
if BUILD_CD_PARANOIA
|
||||||
paranoia_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
|
paranoia_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
$Id: README,v 1.19 2005/11/07 07:49:34 rocky Exp $
|
$Id: README,v 1.20 2006/01/24 02:25:07 rocky Exp $
|
||||||
|
|
||||||
This directory contains some simple examples of the use of the libcdio
|
This directory contains some simple examples of the use of the libcdio
|
||||||
library.
|
library.
|
||||||
@@ -16,49 +16,51 @@ vlc CD-DA plugin which are part of those distributions.
|
|||||||
|
|
||||||
Descriptions of the programs in this example directory are as follows...
|
Descriptions of the programs in this example directory are as follows...
|
||||||
|
|
||||||
audio.c: Sample program to show audio controls.
|
audio.c: Sample program to show audio controls.
|
||||||
|
|
||||||
cdtext.c: A program to show CD-Text and CD disc mode info.
|
cdchange.c: A program to show CD-Text and CD disc mode info.
|
||||||
|
|
||||||
drives.c: A program to show drivers installed and what the default
|
cdtext.c: A program to show CD-Text and CD disc mode info.
|
||||||
CD-ROM drive is and what CD drives are available.
|
|
||||||
|
|
||||||
eject.c: A program eject a CD from a CD-ROM drive and then close the door
|
drives.c: A program to show drivers installed and what the default
|
||||||
again.
|
CD-ROM drive is and what CD drives are available.
|
||||||
|
|
||||||
iso1.c: A program to show using libiso9660 to list files in a
|
eject.c: A program eject a CD from a CD-ROM drive and then close the door
|
||||||
directory of an ISO-9660 image.
|
again.
|
||||||
|
|
||||||
iso2.c: A program to show using libiso9660 to extract a file
|
iso1.c: A program to show using libiso9660 to list files in a
|
||||||
from a CDRWIN cue/bin CD image.
|
directory of an ISO-9660 image.
|
||||||
|
|
||||||
iso3.c: A program to show using libiso9660 to extract a file from an
|
iso2.c: A program to show using libiso9660 to extract a file
|
||||||
ISO-9660 image.
|
from a CDRWIN cue/bin CD image.
|
||||||
|
|
||||||
isofuzzy.c : A program showing fuzzy ISO-9660 detection/reading.
|
iso3.c: A program to show using libiso9660 to extract a file from an
|
||||||
|
ISO-9660 image.
|
||||||
|
|
||||||
mmc1.c: A program to show issuing a simple MMC command (INQUIRY).
|
isofuzzy.c : A program showing fuzzy ISO-9660 detection/reading.
|
||||||
|
|
||||||
mmc2.c: A more involved MMC command to list features from
|
mmc1.c: A program to show issuing a simple MMC command (INQUIRY).
|
||||||
a MMC GET_CONFIGURATION command.
|
|
||||||
|
|
||||||
paranoia: A program to show using CD-DA paranoia (a library for jitter
|
mmc2.c: A more involved MMC command to list features from
|
||||||
detection and audio-read error correction). This program uses
|
a MMC GET_CONFIGURATION command.
|
||||||
an interface compatible (mostly) with cdparanoia.
|
|
||||||
|
|
||||||
paranoia2: Another program to show using CD-DA paranoia using a more
|
paranoia: A program to show using CD-DA paranoia (a library for jitter
|
||||||
libcdio-oriented initialization. Probably more suited to
|
detection and audio-read error correction). This program uses
|
||||||
things that otherwise use libcdio such as media players
|
an interface compatible (mostly) with cdparanoia.
|
||||||
(e.g. for getting CDDB or CD-Text info)
|
|
||||||
|
|
||||||
sample2.c: A simple program to show drivers installed and what the
|
paranoia2: Another program to show using CD-DA paranoia using a more
|
||||||
default CD-ROM drive is.
|
libcdio-oriented initialization. Probably more suited to
|
||||||
|
things that otherwise use libcdio such as media players
|
||||||
|
(e.g. for getting CDDB or CD-Text info)
|
||||||
|
|
||||||
sample3.c: A simple program to show the use of cdio_guess_cd_type().
|
sample2.c: A simple program to show drivers installed and what the
|
||||||
Figure out the kind of CD image we've got.
|
default CD-ROM drive is.
|
||||||
|
|
||||||
sample4.c: A slightly improved sample3 program: we handle cdio logging
|
sample3.c: A simple program to show the use of cdio_guess_cd_type().
|
||||||
and take an optional CD-location.
|
Figure out the kind of CD image we've got.
|
||||||
|
|
||||||
|
sample4.c: A slightly improved sample3 program: we handle cdio logging
|
||||||
|
and take an optional CD-location.
|
||||||
|
|
||||||
tracks.c: A program to list track numbers and logical sector
|
tracks.c: A program to list track numbers and logical sector
|
||||||
numbers of a Compact Disc using libcdio.
|
numbers of a Compact Disc using libcdio.
|
||||||
|
|||||||
Reference in New Issue
Block a user