1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*****************************************************************
* gmerlin - a general purpose multimedia framework and applications
*
* Copyright (c) 2001 - 2010 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* 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, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <config.h>
#include <gmerlin/plugin.h>
#include <cdio/cdio.h>
#define DISCID_SIZE 33
/* Index structure */
typedef struct
{
int num_tracks;
int num_audio_tracks;
struct
{
uint32_t first_sector;
uint32_t last_sector;
/* We read in all available tracks. This flag signals if we can play audio */
int is_audio;
int index; /* Index into the track_info structre */
} * tracks;
} bg_cdaudio_index_t;
void bg_cdaudio_index_dump(bg_cdaudio_index_t*);
void bg_cdaudio_index_destroy(bg_cdaudio_index_t*);
/* CD status (obtained periodically during playback) */
typedef struct
{
int track;
int sector;
} bg_cdaudio_status_t;
/* Stuff, which varies from OS to OS.
For now, linux is the only supported
platform */
CdIo_t * bg_cdaudio_open(const char * device);
bg_cdaudio_index_t * bg_cdaudio_get_index(CdIo_t *);
void bg_cdaudio_close(CdIo_t*);
int bg_cdaudio_check_device(const char * device, char ** name);
bg_device_info_t * bg_cdaudio_find_devices();
int bg_cdaudio_play(CdIo_t*, int first_sector, int last_sector);
void bg_cdaudio_stop(CdIo_t*);
/*
* Get the status (time and track) of the currently played CD
* The st structure MUST be saved between calls
*/
void bg_cdaudio_get_disc_id(bg_cdaudio_index_t * idx, char disc_id[DISCID_SIZE]);
/* Functions for getting the metadata */
#ifdef HAVE_MUSICBRAINZ
/* Try to get the metadata using musicbrainz */
int bg_cdaudio_get_metadata_musicbrainz(bg_cdaudio_index_t*,
bg_track_info_t * info,
char * disc_id,
char * musicbrainz_host,
int musicbrainz_port,
char * musicbrainz_proxy_host,
int musicbrainz_proxy_port);
#endif
#ifdef HAVE_LIBCDDB
int bg_cdaudio_get_metadata_cddb(bg_cdaudio_index_t * idx,
bg_track_info_t * info,
char * cddb_host,
int cddb_port,
char * cddb_path,
char * cddb_proxy_host,
int cddb_proxy_port,
char * cddb_proxy_user,
char * cddb_proxy_pass,
int timeout);
#endif
/*
* Try to get metadata via CDtext. Requires a valid and open
* CDrom, returns False on failure
*/
int bg_cdaudio_get_metadata_cdtext(CdIo_t*,
bg_track_info_t * info,
bg_cdaudio_index_t*);
/*
* Ripping support
* Several versions (cdparanoia, simple linux ripper) can go here
*/
void * bg_cdaudio_rip_create();
int bg_cdaudio_rip_init(void *, CdIo_t *cdio, int start_sector);
int bg_cdaudio_rip_rip(void * data, gavl_audio_frame_t * f);
/* Sector is absolute */
void bg_cdaudio_rip_seek(void * data, int sector);
void bg_cdaudio_rip_close(void * data);
const bg_parameter_info_t * bg_cdaudio_rip_get_parameters();
int
bg_cdaudio_rip_set_parameter(void * data, const char * name,
const bg_parameter_value_t * val);
void bg_cdaudio_rip_destroy(void * data);
/* Load and save cd metadata */
int bg_cdaudio_load(bg_track_info_t * tracks, const char * filename);
void bg_cdaudio_save(bg_track_info_t * tracks, int num_tracks,
const char * filename);
|