You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
744 lines
21 KiB
744 lines
21 KiB
/*****************************************************************************
|
|
* cdda.c : CD digital audio input module for vlc
|
|
*****************************************************************************
|
|
* Copyright (C) 2000, 2003-2006, 2008-2009 VLC authors and VideoLAN
|
|
*
|
|
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
|
|
* Gildas Bazin <gbazin@netcourrier.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
/**
|
|
* Todo:
|
|
* - Improve CDDB support (non-blocking, ...)
|
|
* - Fix tracknumber in MRL
|
|
*/
|
|
|
|
/*****************************************************************************
|
|
* Preamble
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <vlc_common.h>
|
|
#include <vlc_demux.h>
|
|
#include <vlc_plugin.h>
|
|
#include <vlc_input.h>
|
|
#include <vlc_access.h>
|
|
#include <vlc_meta.h>
|
|
#include <vlc_charset.h> /* ToLocaleDup */
|
|
#include <vlc_url.h>
|
|
|
|
#include "vcd/cdrom.h" /* For CDDA_DATA_SIZE */
|
|
|
|
#ifdef HAVE_LIBCDDB
|
|
#include <cddb/cddb.h>
|
|
#include <errno.h>
|
|
#endif
|
|
|
|
static vcddev_t *DiscOpen(vlc_object_t *obj, const char *location,
|
|
const char *path, unsigned *restrict trackp)
|
|
{
|
|
char *devpath;
|
|
|
|
*trackp = var_InheritInteger(obj, "cdda-track");
|
|
|
|
if (path != NULL)
|
|
devpath = ToLocaleDup(path);
|
|
else if (location[0] != '\0')
|
|
{
|
|
#if (DIR_SEP_CHAR == '/')
|
|
char *dec = vlc_uri_decode_duplicate(location);
|
|
if (dec == NULL)
|
|
return NULL;
|
|
|
|
/* GNOME CDDA syntax */
|
|
const char *sl = strrchr(dec, '/');
|
|
if (sl != NULL)
|
|
{
|
|
if (sscanf(sl, "/Track %2u", trackp) == 1)
|
|
dec[sl - dec] = '\0';
|
|
else
|
|
*trackp = 0;
|
|
}
|
|
|
|
if (unlikely(asprintf(&devpath, "/dev/%s", dec) == -1))
|
|
devpath = NULL;
|
|
free(dec);
|
|
#else
|
|
(void) location;
|
|
return NULL;
|
|
#endif
|
|
}
|
|
else
|
|
devpath = var_InheritString(obj, "cd-audio");
|
|
|
|
if (devpath == NULL)
|
|
return NULL;
|
|
|
|
#if defined (_WIN32) || defined (__OS2__)
|
|
/* Trim backslash after drive letter */
|
|
if (devpath[0] != '\0' && !strcmp(&devpath[1], ":" DIR_SEP))
|
|
devpath[2] = '\0';
|
|
#endif
|
|
|
|
/* Open CDDA */
|
|
vcddev_t *dev = ioctl_Open(obj, devpath);
|
|
if (dev == NULL)
|
|
msg_Warn(obj, "cannot open disc %s", devpath);
|
|
free(devpath);
|
|
|
|
return dev;
|
|
}
|
|
|
|
/* how many blocks Demux() will read in each iteration */
|
|
#define CDDA_BLOCKS_ONCE 20
|
|
|
|
typedef struct
|
|
{
|
|
vcddev_t *vcddev; /* vcd device descriptor */
|
|
es_out_id_t *es;
|
|
date_t pts;
|
|
|
|
unsigned start; /**< Track first sector */
|
|
unsigned length; /**< Track total sectors */
|
|
unsigned position; /**< Current offset within track sectors */
|
|
} demux_sys_t;
|
|
|
|
static int Demux(demux_t *demux)
|
|
{
|
|
demux_sys_t *sys = demux->p_sys;
|
|
unsigned count = CDDA_BLOCKS_ONCE;
|
|
|
|
if (sys->position >= sys->length)
|
|
return VLC_DEMUXER_EOF;
|
|
|
|
if (sys->position + count >= sys->length)
|
|
count = sys->length - sys->position;
|
|
|
|
block_t *block = block_Alloc(count * CDDA_DATA_SIZE);
|
|
if (unlikely(block == NULL))
|
|
return VLC_DEMUXER_EOF;
|
|
|
|
if (ioctl_ReadSectors(VLC_OBJECT(demux), sys->vcddev,
|
|
sys->start + sys->position,
|
|
block->p_buffer, count, CDDA_TYPE) < 0)
|
|
{
|
|
msg_Err(demux, "cannot read sector %u", sys->position);
|
|
block_Release(block);
|
|
|
|
/* Skip potentially bad sector */
|
|
sys->position++;
|
|
return VLC_DEMUXER_SUCCESS;
|
|
}
|
|
|
|
sys->position += count;
|
|
|
|
block->i_nb_samples = block->i_buffer / 4;
|
|
block->i_dts = block->i_pts = date_Get(&sys->pts);
|
|
date_Increment(&sys->pts, block->i_nb_samples);
|
|
|
|
es_out_Send(demux->out, sys->es, block);
|
|
es_out_SetPCR(demux->out, date_Get(&sys->pts));
|
|
return VLC_DEMUXER_SUCCESS;
|
|
}
|
|
|
|
static int DemuxControl(demux_t *demux, int query, va_list args)
|
|
{
|
|
demux_sys_t *sys = demux->p_sys;
|
|
|
|
/* One sector is 40000/3 µs */
|
|
static_assert (CDDA_DATA_SIZE * CLOCK_FREQ * 3 ==
|
|
4 * 44100 * INT64_C(40000), "Wrong time/sector ratio");
|
|
|
|
switch (query)
|
|
{
|
|
case DEMUX_CAN_SEEK:
|
|
case DEMUX_CAN_PAUSE:
|
|
case DEMUX_CAN_CONTROL_PACE:
|
|
*va_arg(args, bool*) = true;
|
|
break;
|
|
case DEMUX_GET_PTS_DELAY:
|
|
*va_arg(args, vlc_tick_t *) =
|
|
VLC_TICK_FROM_MS( var_InheritInteger(demux, "disc-caching") );
|
|
break;
|
|
|
|
case DEMUX_SET_PAUSE_STATE:
|
|
break;
|
|
|
|
case DEMUX_GET_POSITION:
|
|
*va_arg(args, double *) = (double)(sys->position)
|
|
/ (double)(sys->length);
|
|
break;
|
|
|
|
case DEMUX_SET_POSITION:
|
|
sys->position = lround(va_arg(args, double) * sys->length);
|
|
break;
|
|
|
|
case DEMUX_GET_LENGTH:
|
|
*va_arg(args, vlc_tick_t *) = (INT64_C(40000) * sys->length) / 3;
|
|
break;
|
|
case DEMUX_GET_TIME:
|
|
*va_arg(args, vlc_tick_t *) = (INT64_C(40000) * sys->position) / 3;
|
|
break;
|
|
case DEMUX_SET_TIME:
|
|
sys->position = (va_arg(args, vlc_tick_t) * 3) / INT64_C(40000);
|
|
break;
|
|
|
|
default:
|
|
return VLC_EGENERIC;
|
|
}
|
|
return VLC_SUCCESS;
|
|
}
|
|
|
|
static int DemuxOpen(vlc_object_t *obj, vcddev_t *dev, unsigned track)
|
|
{
|
|
demux_t *demux = (demux_t *)obj;
|
|
|
|
if (demux->out == NULL)
|
|
goto error;
|
|
|
|
demux_sys_t *sys = vlc_obj_malloc(obj, sizeof (*sys));
|
|
if (unlikely(sys == NULL))
|
|
goto error;
|
|
|
|
demux->p_sys = sys;
|
|
sys->vcddev = dev;
|
|
sys->start = var_InheritInteger(obj, "cdda-first-sector");
|
|
sys->length = var_InheritInteger(obj, "cdda-last-sector") - sys->start;
|
|
|
|
/* Track number in input item */
|
|
if (sys->start == (unsigned)-1 || sys->length == (unsigned)-1)
|
|
{
|
|
int *sectors = NULL; /* Track sectors */
|
|
unsigned titles = ioctl_GetTracksMap(obj, dev, §ors);
|
|
|
|
if (track > titles)
|
|
{
|
|
msg_Err(obj, "invalid track number: %u/%u", track, titles);
|
|
free(sectors);
|
|
goto error;
|
|
}
|
|
|
|
sys->start = sectors[track - 1];
|
|
sys->length = sectors[track] - sys->start;
|
|
free(sectors);
|
|
}
|
|
|
|
es_format_t fmt;
|
|
|
|
es_format_Init(&fmt, AUDIO_ES, VLC_CODEC_S16L);
|
|
fmt.audio.i_rate = 44100;
|
|
fmt.audio.i_channels = 2;
|
|
sys->es = es_out_Add(demux->out, &fmt);
|
|
|
|
date_Init(&sys->pts, 44100, 1);
|
|
date_Set(&sys->pts, VLC_TICK_0);
|
|
|
|
sys->position = 0;
|
|
demux->pf_demux = Demux;
|
|
demux->pf_control = DemuxControl;
|
|
return VLC_SUCCESS;
|
|
|
|
error:
|
|
ioctl_Close(obj, dev);
|
|
return VLC_EGENERIC;
|
|
}
|
|
|
|
/*****************************************************************************
|
|
* Access: local prototypes
|
|
*****************************************************************************/
|
|
typedef struct
|
|
{
|
|
vcddev_t *vcddev; /* vcd device descriptor */
|
|
int *p_sectors; /* Track sectors */
|
|
int titles;
|
|
int cdtextc;
|
|
vlc_meta_t **cdtextv;
|
|
#ifdef HAVE_LIBCDDB
|
|
cddb_disc_t *cddb;
|
|
#endif
|
|
} access_sys_t;
|
|
|
|
#ifdef HAVE_LIBCDDB
|
|
static cddb_disc_t *GetCDDBInfo( vlc_object_t *obj, int i_titles, int *p_sectors )
|
|
{
|
|
if( !var_InheritBool( obj, "metadata-network-access" ) )
|
|
{
|
|
msg_Dbg( obj, "album art policy set to manual: not fetching" );
|
|
return NULL;
|
|
}
|
|
|
|
/* */
|
|
cddb_conn_t *p_cddb = cddb_new();
|
|
if( !p_cddb )
|
|
{
|
|
msg_Warn( obj, "unable to use CDDB" );
|
|
return NULL;
|
|
}
|
|
|
|
/* */
|
|
|
|
cddb_http_enable( p_cddb );
|
|
|
|
char *psz_tmp = var_InheritString( obj, "cddb-server" );
|
|
if( psz_tmp )
|
|
{
|
|
cddb_set_server_name( p_cddb, psz_tmp );
|
|
free( psz_tmp );
|
|
}
|
|
|
|
cddb_set_server_port( p_cddb, var_InheritInteger( obj, "cddb-port" ) );
|
|
|
|
cddb_set_email_address( p_cddb, "vlc@videolan.org" );
|
|
|
|
cddb_set_http_path_query( p_cddb, "/~cddb/cddb.cgi" );
|
|
cddb_set_http_path_submit( p_cddb, "/~cddb/submit.cgi" );
|
|
|
|
|
|
char *psz_cachedir;
|
|
char *psz_temp = config_GetUserDir( VLC_CACHE_DIR );
|
|
|
|
if( asprintf( &psz_cachedir, "%s" DIR_SEP "cddb", psz_temp ) > 0 ) {
|
|
cddb_cache_enable( p_cddb );
|
|
cddb_cache_set_dir( p_cddb, psz_cachedir );
|
|
free( psz_cachedir );
|
|
}
|
|
free( psz_temp );
|
|
|
|
cddb_set_timeout( p_cddb, 10 );
|
|
|
|
/* */
|
|
cddb_disc_t *p_disc = cddb_disc_new();
|
|
if( !p_disc )
|
|
{
|
|
msg_Err( obj, "unable to create CDDB disc structure." );
|
|
goto error;
|
|
}
|
|
|
|
int64_t i_length = 2000000; /* PreGap */
|
|
for( int i = 0; i < i_titles; i++ )
|
|
{
|
|
cddb_track_t *t = cddb_track_new();
|
|
cddb_track_set_frame_offset( t, p_sectors[i] + 150 ); /* Pregap offset */
|
|
|
|
cddb_disc_add_track( p_disc, t );
|
|
const int64_t i_size = ( p_sectors[i+1] - p_sectors[i] ) *
|
|
(int64_t)CDDA_DATA_SIZE;
|
|
i_length += INT64_C(1000000) * i_size / 44100 / 4 ;
|
|
|
|
msg_Dbg( obj, "Track %i offset: %i", i, p_sectors[i] + 150 );
|
|
}
|
|
|
|
msg_Dbg( obj, "Total length: %i", (int)(i_length/1000000) );
|
|
cddb_disc_set_length( p_disc, (int)(i_length/1000000) );
|
|
|
|
if( !cddb_disc_calc_discid( p_disc ) )
|
|
{
|
|
msg_Err( obj, "CDDB disc ID calculation failed" );
|
|
goto error;
|
|
}
|
|
|
|
const int i_matches = cddb_query( p_cddb, p_disc );
|
|
if( i_matches < 0 )
|
|
{
|
|
msg_Warn( obj, "CDDB error: %s", cddb_error_str(errno) );
|
|
goto error;
|
|
}
|
|
else if( i_matches == 0 )
|
|
{
|
|
msg_Dbg( obj, "Couldn't find any matches in CDDB." );
|
|
goto error;
|
|
}
|
|
else if( i_matches > 1 )
|
|
msg_Warn( obj, "found %d matches in CDDB. Using first one.", i_matches );
|
|
|
|
cddb_read( p_cddb, p_disc );
|
|
|
|
cddb_destroy( p_cddb);
|
|
return p_disc;
|
|
|
|
error:
|
|
if( p_disc )
|
|
cddb_disc_destroy( p_disc );
|
|
cddb_destroy( p_cddb );
|
|
return NULL;
|
|
}
|
|
#endif /* HAVE_LIBCDDB */
|
|
|
|
static void AccessGetMeta(stream_t *access, vlc_meta_t *meta)
|
|
{
|
|
access_sys_t *sys = access->p_sys;
|
|
|
|
vlc_meta_SetTitle(meta, "Audio CD");
|
|
|
|
/* Retrieve CD-TEXT information */
|
|
if (sys->cdtextc > 0 && sys->cdtextv[0] != NULL)
|
|
vlc_meta_Merge(meta, sys->cdtextv[0]);
|
|
|
|
/* Return true if the given string is not NULL and not empty */
|
|
#define NONEMPTY( psz ) ( (psz) && *(psz) )
|
|
/* If the given string is NULL or empty, fill it by the return value of 'code' */
|
|
#define ON_EMPTY( psz, code ) do { if( !NONEMPTY( psz) ) { (psz) = code; } } while(0)
|
|
|
|
/* Retrieve CDDB information (preferred over CD-TEXT) */
|
|
#ifdef HAVE_LIBCDDB
|
|
if (sys->cddb != NULL)
|
|
{
|
|
const char *str = cddb_disc_get_title(sys->cddb);
|
|
if (NONEMPTY(str))
|
|
vlc_meta_SetTitle(meta, str);
|
|
|
|
str = cddb_disc_get_genre(sys->cddb);
|
|
if (NONEMPTY(str))
|
|
vlc_meta_SetGenre(meta, str);
|
|
|
|
const unsigned year = cddb_disc_get_year(sys->cddb);
|
|
if (year != 0)
|
|
{
|
|
char yearbuf[5];
|
|
|
|
snprintf(yearbuf, sizeof (yearbuf), "%u", year);
|
|
vlc_meta_SetDate(meta, yearbuf);
|
|
}
|
|
|
|
/* Set artist only if identical across tracks */
|
|
str = cddb_disc_get_artist(sys->cddb);
|
|
if (NONEMPTY(str))
|
|
{
|
|
for (int i = 0; i < sys->titles; i++)
|
|
{
|
|
cddb_track_t *t = cddb_disc_get_track(sys->cddb, i);
|
|
if (t == NULL)
|
|
continue;
|
|
|
|
const char *track_artist = cddb_track_get_artist(t);
|
|
if (NONEMPTY(track_artist))
|
|
{
|
|
if (str == NULL)
|
|
str = track_artist;
|
|
else
|
|
if (strcmp(str, track_artist))
|
|
{
|
|
str = NULL;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
static int ReadDir(stream_t *access, input_item_node_t *node)
|
|
{
|
|
access_sys_t *sys = access->p_sys;
|
|
|
|
/* Build title table */
|
|
for (int i = 0; i < sys->titles; i++)
|
|
{
|
|
msg_Dbg(access, "track[%d] start=%d", i, sys->p_sectors[i]);
|
|
|
|
/* Initial/default name */
|
|
char *name;
|
|
|
|
if (unlikely(asprintf(&name, _("Audio CD - Track %02i"), i + 1) == -1))
|
|
name = NULL;
|
|
|
|
/* Create playlist items */
|
|
const vlc_tick_t duration =
|
|
(vlc_tick_t)(sys->p_sectors[i + 1] - sys->p_sectors[i])
|
|
* CDDA_DATA_SIZE * CLOCK_FREQ / 44100 / 2 / 2;
|
|
|
|
input_item_t *item = input_item_NewDisc(access->psz_url,
|
|
(name != NULL) ? name :
|
|
access->psz_url, duration);
|
|
free(name);
|
|
|
|
if (unlikely(item == NULL))
|
|
continue;
|
|
|
|
char *opt;
|
|
if (likely(asprintf(&opt, "cdda-track=%i", i + 1) != -1))
|
|
{
|
|
input_item_AddOption(item, opt, VLC_INPUT_OPTION_TRUSTED);
|
|
free(opt);
|
|
}
|
|
|
|
if (likely(asprintf(&opt, "cdda-first-sector=%i",
|
|
sys->p_sectors[i]) != -1))
|
|
{
|
|
input_item_AddOption(item, opt, VLC_INPUT_OPTION_TRUSTED);
|
|
free(opt);
|
|
}
|
|
|
|
if (likely(asprintf(&opt, "cdda-last-sector=%i",
|
|
sys->p_sectors[i + 1]) != -1))
|
|
{
|
|
input_item_AddOption(item, opt, VLC_INPUT_OPTION_TRUSTED);
|
|
free(opt);
|
|
}
|
|
|
|
const char *title = NULL;
|
|
const char *artist = NULL;
|
|
const char *album = NULL;
|
|
const char *genre = NULL;
|
|
const char *description = NULL;
|
|
int year = 0;
|
|
|
|
#ifdef HAVE_LIBCDDB
|
|
if (sys->cddb != NULL)
|
|
{
|
|
cddb_track_t *t = cddb_disc_get_track(sys->cddb, i);
|
|
if (t != NULL)
|
|
{
|
|
title = cddb_track_get_title(t);
|
|
artist = cddb_track_get_artist(t);
|
|
}
|
|
|
|
ON_EMPTY(artist, cddb_disc_get_artist(sys->cddb));
|
|
album = cddb_disc_get_title(sys->cddb);
|
|
genre = cddb_disc_get_genre(sys->cddb);
|
|
year = cddb_disc_get_year(sys->cddb);
|
|
}
|
|
#endif
|
|
const vlc_meta_t *m;
|
|
|
|
if (sys->cdtextc > 0 && (m = sys->cdtextv[0]) != NULL)
|
|
{
|
|
ON_EMPTY(artist, vlc_meta_Get(m, vlc_meta_Artist));
|
|
ON_EMPTY(album, vlc_meta_Get(m, vlc_meta_Album));
|
|
ON_EMPTY(genre, vlc_meta_Get(m, vlc_meta_Genre));
|
|
description = vlc_meta_Get(m, vlc_meta_Description);
|
|
}
|
|
|
|
if (i + 1 < sys->cdtextc && (m = sys->cdtextv[i + 1]) != NULL)
|
|
{
|
|
ON_EMPTY(title, vlc_meta_Get(m, vlc_meta_Title));
|
|
ON_EMPTY(artist, vlc_meta_Get(m, vlc_meta_Artist));
|
|
ON_EMPTY(genre, vlc_meta_Get(m, vlc_meta_Genre));
|
|
ON_EMPTY(description, vlc_meta_Get(m, vlc_meta_Description));
|
|
}
|
|
|
|
if (NONEMPTY(title))
|
|
{
|
|
input_item_SetName(item, title);
|
|
input_item_SetTitle(item, title);
|
|
}
|
|
|
|
if (NONEMPTY(artist))
|
|
input_item_SetArtist(item, artist);
|
|
|
|
if (NONEMPTY(genre))
|
|
input_item_SetGenre(item, genre);
|
|
|
|
if (NONEMPTY(description))
|
|
input_item_SetDescription(item, description);
|
|
|
|
if (NONEMPTY(album))
|
|
input_item_SetAlbum(item, album);
|
|
|
|
if (year != 0)
|
|
{
|
|
char yearbuf[5];
|
|
|
|
snprintf(yearbuf, sizeof (yearbuf), "%u", year);
|
|
input_item_SetDate(item, yearbuf);
|
|
}
|
|
|
|
char num[4];
|
|
snprintf(num, sizeof (num), "%d", i + 1);
|
|
input_item_SetTrackNum(item, num);
|
|
|
|
input_item_node_AppendItem(node, item);
|
|
input_item_Release(item);
|
|
}
|
|
#undef ON_EMPTY
|
|
#undef NONEMPTY
|
|
return VLC_SUCCESS;
|
|
}
|
|
|
|
static int AccessControl(stream_t *access, int query, va_list args)
|
|
{
|
|
if (query == STREAM_GET_META)
|
|
{
|
|
AccessGetMeta(access, va_arg(args, vlc_meta_t *));
|
|
return VLC_SUCCESS;
|
|
}
|
|
return access_vaDirectoryControlHelper(access, query, args);
|
|
}
|
|
|
|
static int AccessOpen(vlc_object_t *obj, vcddev_t *dev)
|
|
{
|
|
stream_t *access = (stream_t *)obj;
|
|
/* Only whole discs here */
|
|
access_sys_t *sys = vlc_obj_malloc(obj, sizeof (*sys));
|
|
if (unlikely(sys == NULL))
|
|
{
|
|
ioctl_Close(obj, dev);
|
|
return VLC_ENOMEM;
|
|
}
|
|
|
|
sys->vcddev = dev;
|
|
sys->p_sectors = NULL;
|
|
|
|
sys->titles = ioctl_GetTracksMap(obj, dev, &sys->p_sectors);
|
|
if (sys->titles < 0)
|
|
{
|
|
msg_Err(obj, "cannot count tracks");
|
|
goto error;
|
|
}
|
|
|
|
if (sys->titles == 0)
|
|
{
|
|
msg_Err(obj, "no audio tracks found");
|
|
goto error;
|
|
}
|
|
|
|
#ifdef HAVE_LIBCDDB
|
|
msg_Dbg(obj, "retrieving metadata with CDDB");
|
|
|
|
sys->cddb = GetCDDBInfo(obj, sys->titles, sys->p_sectors);
|
|
if (sys->cddb != NULL)
|
|
msg_Dbg(obj, "disc ID: 0x%08x", cddb_disc_get_discid(sys->cddb));
|
|
else
|
|
msg_Dbg(obj, "CDDB failure");
|
|
#endif
|
|
|
|
if (ioctl_GetCdText(obj, dev, &sys->cdtextv, &sys->cdtextc))
|
|
{
|
|
msg_Dbg(obj, "CD-TEXT information missing");
|
|
sys->cdtextv = NULL;
|
|
sys->cdtextc = 0;
|
|
}
|
|
|
|
access->p_sys = sys;
|
|
access->pf_read = NULL;
|
|
access->pf_block = NULL;
|
|
access->pf_readdir = ReadDir;
|
|
access->pf_seek = NULL;
|
|
access->pf_control = AccessControl;
|
|
return VLC_SUCCESS;
|
|
|
|
error:
|
|
free(sys->p_sectors);
|
|
ioctl_Close(obj, dev);
|
|
return VLC_EGENERIC;
|
|
}
|
|
|
|
static void AccessClose(access_sys_t *sys)
|
|
{
|
|
for (int i = 0; i < sys->cdtextc; i++)
|
|
{
|
|
vlc_meta_t *meta = sys->cdtextv[i];
|
|
if (meta != NULL)
|
|
vlc_meta_Delete(meta);
|
|
}
|
|
free(sys->cdtextv);
|
|
|
|
#ifdef HAVE_LIBCDDB
|
|
if (sys->cddb != NULL)
|
|
cddb_disc_destroy(sys->cddb);
|
|
#endif
|
|
|
|
free(sys->p_sectors);
|
|
}
|
|
|
|
static int Open(vlc_object_t *obj)
|
|
{
|
|
stream_t *stream = (stream_t *)obj;
|
|
unsigned track;
|
|
|
|
vcddev_t *dev = DiscOpen(obj, stream->psz_location, stream->psz_filepath,
|
|
&track);
|
|
if (dev == NULL)
|
|
return VLC_EGENERIC;
|
|
|
|
if (track == 0)
|
|
return AccessOpen(obj, dev);
|
|
else
|
|
return DemuxOpen(obj, dev, track);
|
|
}
|
|
|
|
static void Close(vlc_object_t *obj)
|
|
{
|
|
stream_t *stream = (stream_t *)obj;
|
|
void *sys = stream->p_sys;
|
|
|
|
if (stream->pf_readdir != NULL)
|
|
AccessClose(sys);
|
|
|
|
static_assert(offsetof(demux_sys_t, vcddev) == 0, "Invalid cast");
|
|
static_assert(offsetof(access_sys_t, vcddev) == 0, "Invalid cast");
|
|
ioctl_Close(obj, *(vcddev_t **)sys);
|
|
}
|
|
|
|
/*****************************************************************************
|
|
* Module descriptior
|
|
*****************************************************************************/
|
|
#define CDAUDIO_DEV_TEXT N_("Audio CD device")
|
|
#if defined( _WIN32 ) || defined( __OS2__ )
|
|
# define CDAUDIO_DEV_LONGTEXT N_( \
|
|
"This is the default Audio CD drive (or file) to use. Don't forget the " \
|
|
"colon after the drive letter (e.g. D:)")
|
|
# define CD_DEVICE "D:"
|
|
#else
|
|
# define CDAUDIO_DEV_LONGTEXT N_( \
|
|
"This is the default Audio CD device to use." )
|
|
# if defined(__OpenBSD__)
|
|
# define CD_DEVICE "/dev/cd0c"
|
|
# elif defined(__linux__)
|
|
# define CD_DEVICE "/dev/sr0"
|
|
# else
|
|
# define CD_DEVICE "/dev/cdrom"
|
|
# endif
|
|
#endif
|
|
|
|
vlc_module_begin ()
|
|
set_shortname( N_("Audio CD") )
|
|
set_description( N_("Audio CD input") )
|
|
set_capability( "access", 0 )
|
|
set_category( CAT_INPUT )
|
|
set_subcategory( SUBCAT_INPUT_ACCESS )
|
|
set_callbacks(Open, Close)
|
|
|
|
add_loadfile("cd-audio", CD_DEVICE, CDAUDIO_DEV_TEXT, CDAUDIO_DEV_LONGTEXT)
|
|
|
|
add_usage_hint( N_("[cdda:][device][@[track]]") )
|
|
add_integer( "cdda-track", 0 , NULL, NULL, true )
|
|
change_volatile ()
|
|
add_integer( "cdda-first-sector", -1, NULL, NULL, true )
|
|
change_volatile ()
|
|
add_integer( "cdda-last-sector", -1, NULL, NULL, true )
|
|
change_volatile ()
|
|
|
|
#ifdef HAVE_LIBCDDB
|
|
add_string( "cddb-server", "freedb.videolan.org", N_( "CDDB Server" ),
|
|
N_( "Address of the CDDB server to use." ), true )
|
|
add_integer( "cddb-port", 80, N_( "CDDB port" ),
|
|
N_( "CDDB Server port to use." ), true )
|
|
change_integer_range( 1, 65535 )
|
|
#endif
|
|
|
|
add_shortcut( "cdda", "cddasimple" )
|
|
vlc_module_end ()
|
|
|