2005-03-01 00:49:24 +00:00
|
|
|
|
/*
|
2005-03-06 15:59:20 +00:00
|
|
|
|
$Id: audio.c,v 1.6 2005/03/06 15:59:20 rocky Exp $
|
2005-03-01 00:49:24 +00:00
|
|
|
|
|
|
|
|
|
|
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>
|
|
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
*/
|
|
|
|
|
|
/*! Audio (via line output) related routines. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
|
# include "config.h"
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include <cdio/cdio.h>
|
2005-03-06 15:59:20 +00:00
|
|
|
|
#include <cdio/util.h>
|
2005-03-01 00:49:24 +00:00
|
|
|
|
#include <cdio/audio.h>
|
|
|
|
|
|
#include "cdio_private.h"
|
|
|
|
|
|
|
2005-03-06 15:59:20 +00:00
|
|
|
|
/* Return the number of seconds (discarding frame portion) of an MSF */
|
|
|
|
|
|
unsigned int
|
|
|
|
|
|
cdio_audio_get_msf_seconds(msf_t *p_msf)
|
|
|
|
|
|
{
|
|
|
|
|
|
return
|
|
|
|
|
|
cdio_from_bcd8(p_msf->m)*CDIO_CD_SECS_PER_MIN + cdio_from_bcd8(p_msf->s);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2005-03-01 00:49:24 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Get volume of an audio CD.
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
|
|
|
|
|
cdio_audio_get_volume (CdIo_t *p_cdio, /*out*/ cdio_audio_volume_t *p_volume)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-01 02:49:43 +00:00
|
|
|
|
if (p_cdio->op.audio_get_volume) {
|
2005-03-01 00:49:24 +00:00
|
|
|
|
return p_cdio->op.audio_get_volume (p_cdio->env, p_volume);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Playing CD through analog output
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
|
|
|
|
|
cdio_audio_pause (CdIo_t *p_cdio)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-01 02:49:43 +00:00
|
|
|
|
if (p_cdio->op.audio_pause) {
|
2005-03-01 00:49:24 +00:00
|
|
|
|
return p_cdio->op.audio_pause (p_cdio->env);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Playing CD through analog output at the given MSF.
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
2005-03-05 09:26:52 +00:00
|
|
|
|
cdio_audio_play_msf (CdIo_t *p_cdio, msf_t *p_start_msf, msf_t *p_end_msf)
|
2005-03-01 00:49:24 +00:00
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-01 02:49:43 +00:00
|
|
|
|
if (p_cdio->op.audio_play_msf) {
|
2005-03-05 09:26:52 +00:00
|
|
|
|
return p_cdio->op.audio_play_msf (p_cdio->env, p_start_msf, p_end_msf);
|
2005-03-01 00:49:24 +00:00
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Playing CD through analog output
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
|
|
|
|
|
cdio_audio_play_track_index (CdIo_t *p_cdio, cdio_track_index_t *p_track_index)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-01 02:49:43 +00:00
|
|
|
|
if (p_cdio->op.audio_play_track_index) {
|
2005-03-01 00:49:24 +00:00
|
|
|
|
return p_cdio->op.audio_play_track_index (p_cdio->env, p_track_index);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Get subchannel information.
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
|
|
|
|
|
cdio_audio_read_subchannel (CdIo_t *p_cdio, cdio_subchannel_t *p_subchannel)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-01 02:49:43 +00:00
|
|
|
|
if (p_cdio->op.audio_read_subchannel) {
|
2005-03-01 00:49:24 +00:00
|
|
|
|
return p_cdio->op.audio_read_subchannel(p_cdio->env, p_subchannel);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Resume playing an audio CD.
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
|
|
|
|
|
cdio_audio_resume (CdIo_t *p_cdio)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-06 15:59:20 +00:00
|
|
|
|
if (p_cdio->op.audio_resume) {
|
2005-03-01 00:49:24 +00:00
|
|
|
|
return p_cdio->op.audio_resume(p_cdio->env);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Set volume of an audio CD.
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
2005-03-05 09:11:44 +00:00
|
|
|
|
cdio_audio_set_volume (CdIo_t *p_cdio, cdio_audio_volume_t *p_volume)
|
2005-03-01 00:49:24 +00:00
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-01 02:49:43 +00:00
|
|
|
|
if (p_cdio->op.audio_set_volume) {
|
2005-03-01 00:49:24 +00:00
|
|
|
|
return p_cdio->op.audio_set_volume(p_cdio->env, p_volume);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2005-03-06 11:21:52 +00:00
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Resume playing an audio CD.
|
|
|
|
|
|
|
|
|
|
|
|
@param p_cdio the CD object to be acted upon.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
driver_return_code_t
|
|
|
|
|
|
cdio_audio_stop (CdIo_t *p_cdio)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!p_cdio) return DRIVER_OP_UNINIT;
|
|
|
|
|
|
|
2005-03-06 15:59:20 +00:00
|
|
|
|
if (p_cdio->op.audio_stop) {
|
2005-03-06 11:21:52 +00:00
|
|
|
|
return p_cdio->op.audio_stop(p_cdio->env);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return DRIVER_OP_UNSUPPORTED;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* Local variables:
|
|
|
|
|
|
* c-file-style: "gnu"
|
|
|
|
|
|
* tab-width: 8
|
|
|
|
|
|
* indent-tabs-mode: nil
|
|
|
|
|
|
* End:
|
|
|
|
|
|
*/
|