Commit 59045db6 authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/cdda.c: new MRL syntax: "[dev_path][@[title-start][-[title-end]]]".

  - if no title-start/end are specified, the whole cd is played.
  - if only a title-start is specified, only this title is played.
  - if a title-start and end are specified, this range is played.
  - "@title-start-" will play everything from the specified start position.
parent b1803154
...@@ -72,7 +72,10 @@ struct access_sys_t ...@@ -72,7 +72,10 @@ struct access_sys_t
int i_titles; int i_titles;
input_title_t *title[99]; /* No more that 99 track in a cd-audio */ input_title_t *title[99]; /* No more that 99 track in a cd-audio */
/* */ int i_title_start;
int i_title_end;
/* Current position */
int i_sector; /* Current Sector */ int i_sector; /* Current Sector */
int * p_sectors; /* Track sectors */ int * p_sectors; /* Track sectors */
...@@ -87,39 +90,42 @@ static int Control( access_t *, int, va_list ); ...@@ -87,39 +90,42 @@ static int Control( access_t *, int, va_list );
/***************************************************************************** /*****************************************************************************
* Open: open cdda * Open: open cdda
* MRL syntax: [dev_path][@[title-start][-[title-end]]]
*****************************************************************************/ *****************************************************************************/
static int Open( vlc_object_t *p_this ) static int Open( vlc_object_t *p_this )
{ {
access_t *p_access = (access_t*)p_this; access_t *p_access = (access_t*)p_this;
access_sys_t *p_sys; access_sys_t *p_sys;
char *psz_dup = strdup( p_access->psz_path ); char *psz_dup, *psz;
char *psz; int i, i_title_start = -1, i_title_end = -1;
int i;
int i_title = 0;
vcddev_t *vcddev; vcddev_t *vcddev;
/* Command line: cdda://[dev_path][@title] */ /* Command line: [dev_path][@[title-start][-[title-end]]] */
if( ( psz = strchr( psz_dup, '@' ) ) ) psz_dup = p_access->psz_path? strdup( p_access->psz_path ) : 0;
if( psz_dup && ( psz = strchr( psz_dup, '@' ) ) )
{ {
*psz++ = '\0'; *psz++ = 0;
i_title_start = i_title_end = strtol( psz, NULL, 0 );
i_title = strtol( psz, NULL, 0 ); if( ( psz = strchr( psz, '-' ) ) )
{
*psz++;
i_title_end = strtol( psz, NULL, 0 );
}
} }
if( *psz_dup == '\0' ) if( !psz_dup || !*psz_dup )
{ {
free( psz_dup ); if( psz_dup ) free( psz_dup );
/* Only when selected */ /* Only when selected */
if( strcmp( p_access->psz_access, "cdda" ) ) if( !p_access->b_force ) return VLC_EGENERIC;
return VLC_EGENERIC;
psz_dup = var_CreateGetString( p_access, "cd-audio" ); psz_dup = var_CreateGetString( p_access, "cd-audio" );
if( *psz_dup == '\0' ) if( !psz_dup || !*psz_dup )
{ {
free( psz_dup ); if( psz_dup ) free( psz_dup );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
} }
...@@ -171,6 +177,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -171,6 +177,7 @@ static int Open( vlc_object_t *p_this )
msg_Dbg( p_access, "title[%d] start=%d", i, p_sys->p_sectors[i] ); msg_Dbg( p_access, "title[%d] start=%d", i, p_sys->p_sectors[i] );
msg_Dbg( p_access, "title[%d] end=%d", i, p_sys->p_sectors[i+1] ); msg_Dbg( p_access, "title[%d] end=%d", i, p_sys->p_sectors[i+1] );
asprintf( &t->psz_name, _("Track %i"), i + 1 );
t->i_size = ( p_sys->p_sectors[i+1] - p_sys->p_sectors[i] ) * t->i_size = ( p_sys->p_sectors[i+1] - p_sys->p_sectors[i] ) *
(int64_t)CDDA_DATA_SIZE; (int64_t)CDDA_DATA_SIZE;
...@@ -178,10 +185,16 @@ static int Open( vlc_object_t *p_this ) ...@@ -178,10 +185,16 @@ static int Open( vlc_object_t *p_this )
} }
/* Starting title and sector */ /* Starting title and sector */
if( i_title >= p_sys->i_titles ) i_title = 0; if( i_title_start < 1 || i_title_start > p_sys->i_titles )
p_sys->i_sector = p_sys->p_sectors[i_title]; p_sys->i_title_start = 1;
p_access->info.i_title = i_title; else p_sys->i_title_start = i_title_start;
p_access->info.i_size = p_sys->title[i_title]->i_size; if( i_title_end < 1 || i_title_end > p_sys->i_titles )
p_sys->i_title_end = -1;
else p_sys->i_title_end = i_title_end;
p_sys->i_sector = p_sys->p_sectors[p_sys->i_title_start-1];
p_access->info.i_title = p_sys->i_title_start-1;
p_access->info.i_size = p_sys->title[p_sys->i_title_start-1]->i_size;
/* Build a WAV header for the output data */ /* Build a WAV header for the output data */
memset( &p_sys->waveheader, 0, sizeof(WAVEHEADER) ); memset( &p_sys->waveheader, 0, sizeof(WAVEHEADER) );
...@@ -253,7 +266,9 @@ static block_t *Block( access_t *p_access ) ...@@ -253,7 +266,9 @@ static block_t *Block( access_t *p_access )
/* Check end of title */ /* Check end of title */
while( p_sys->i_sector >= p_sys->p_sectors[p_access->info.i_title + 1] ) while( p_sys->i_sector >= p_sys->p_sectors[p_access->info.i_title + 1] )
{ {
if( p_access->info.i_title + 1 >= p_sys->i_titles ) if( p_access->info.i_title + 1 >= p_sys->i_titles ||
( p_sys->i_title_end > 0 &&
p_access->info.i_title + 1 >= p_sys->i_title_end ) )
{ {
p_access->info.b_eof = VLC_TRUE; p_access->info.b_eof = VLC_TRUE;
return NULL; return NULL;
...@@ -379,6 +394,10 @@ static int Control( access_t *p_access, int i_query, va_list args ) ...@@ -379,6 +394,10 @@ static int Control( access_t *p_access, int i_query, va_list args )
/* Next sector to read */ /* Next sector to read */
p_sys->i_sector = p_sys->p_sectors[i]; p_sys->i_sector = p_sys->p_sectors[i];
/* User tries to access another title so better reset
* the end title */
p_sys->i_title_end = -1;
} }
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment