]> git.sesse.net Git - vlc/blob - modules/access/cdda/access.c
Forgot that the lsn internal structure is 0-origin.
[vlc] / modules / access / cdda / access.c
1 /*****************************************************************************
2  * access.c : CD digital audio input module for vlc using libcdio
3  *****************************************************************************
4  * Copyright (C) 2000, 2003, 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Rocky Bernstein <rocky@panix.com>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include "callback.h"      /* FIXME - reorganize callback.h, cdda.h better */
30 #include "cdda.h"          /* private structures. Also #includes vlc things */
31 #include "info.h"          /* headers for meta info retrieval */
32 #include <vlc_playlist.h>  /* Has to come *after* cdda.h */
33 #include "vlc_keys.h"
34
35 #include <cdio/cdio.h>
36 #include <cdio/logging.h>
37 #include <cdio/cd_types.h>
38
39 #include <stdio.h>
40
41 /* #ifdef variables below are defined via config.h via #include vlc above. */
42 #ifdef HAVE_STDLIB_H
43 #include <stdlib.h>
44 #endif
45
46 #ifdef HAVE_SYS_TYPES_H
47 #include <sys/types.h>
48 #endif
49
50 #ifdef HAVE_STRING_H
51 #include <string.h>
52 #endif
53
54 #ifdef HAVE_UNISTD_H
55 #   include <unistd.h>
56 #endif
57
58 /* FIXME: This variable is a hack. Would be nice to eliminate. */
59 access_t *p_cdda_input = NULL;
60
61 /*****************************************************************************
62  * Local prototypes
63  *****************************************************************************/
64 static block_t *CDDAReadBlocks( access_t * p_access );
65 static int      CDDASeek( access_t * p_access, int64_t i_pos );
66 static int      CDDAControl( access_t *p_access, int i_query,
67                              va_list args );
68
69 static int      CDDAInit( access_t *p_access, cdda_data_t *p_cdda ) ;
70
71
72 /****************************************************************************
73  * Private functions
74  ****************************************************************************/
75
76 /* process messages that originate from libcdio. */
77 static void
78 cdio_log_handler (cdio_log_level_t level, const char message[])
79 {
80   cdda_data_t *p_cdda = (cdda_data_t *)p_cdda_input->p_sys;
81
82   if( p_cdda == NULL )
83       return;
84
85   switch (level) {
86   case CDIO_LOG_DEBUG:
87   case CDIO_LOG_INFO:
88     if (p_cdda->i_debug & INPUT_DBG_CDIO)
89       msg_Dbg( p_cdda_input, message);
90     break;
91   case CDIO_LOG_WARN:
92     msg_Warn( p_cdda_input, message);
93     break;
94   case CDIO_LOG_ERROR:
95   case CDIO_LOG_ASSERT:
96     msg_Err( p_cdda_input, message);
97     break;
98   default:
99     msg_Warn( p_cdda_input, message,
100             "The above message had unknown cdio log level",
101             level);
102   }
103   return;
104 }
105
106
107 #ifdef HAVE_LIBCDDB
108 /*! This routine is called by libcddb routines on error.
109    Setup is done by init_input_plugin.
110 */
111 static void
112 cddb_log_handler (cddb_log_level_t level, const char message[])
113 {
114     cdda_data_t *p_cdda = (cdda_data_t *)p_cdda_input->p_sys;
115     switch (level)
116     {
117         case CDDB_LOG_DEBUG:
118         case CDDB_LOG_INFO:
119         if (!(p_cdda->i_debug & INPUT_DBG_CDDB)) return;
120
121         /* Fall through if to warn case */
122         default:
123             cdio_log_handler (level, message);
124     }
125 }
126 #endif /*HAVE_LIBCDDB*/
127
128
129 /*! This routine is when xine is not fully set up (before full initialization)
130    or is not around (before finalization).
131 */
132 static void
133 uninit_log_handler (cdio_log_level_t level, const char message[])
134 {
135     cdda_data_t *p_cdda = NULL;
136
137     if (p_cdda_input)
138         p_cdda = (cdda_data_t *)p_cdda_input->p_sys;
139
140      switch (level)
141      {
142         case CDIO_LOG_DEBUG:
143         case CDIO_LOG_INFO:
144         if (!p_cdda || !(p_cdda->i_debug & (INPUT_DBG_CDIO|INPUT_DBG_CDDB)))
145             return;
146
147         /* Fall through if to warn case */
148         case CDIO_LOG_WARN:
149             fprintf(stderr, "WARN: %s\n", message);
150             break;
151         case CDIO_LOG_ERROR:
152             fprintf(stderr, "ERROR: %s\n", message);
153             break;
154         case CDIO_LOG_ASSERT:
155             fprintf(stderr, "ASSERT ERROR: %s\n", message);
156             break;
157         default:
158             fprintf(stderr, "UNKNOWN ERROR: %s\n%s %d\n", message,
159                             "The above message had unknown cdio log level",
160                             level);
161     }
162
163     /* gl_default_cdio_log_handler (level, message); */
164 }
165
166 /*****************************************************************************
167  * CDDAReadBlocks: reads a group of blocks from the CD-DA and returns
168  * an allocated pointer to the data. NULL is returned if no data
169  * read. It is also possible if we haven't read a RIFF header in which
170  * case one that we creaded during Open/Initialization is returned.
171  *****************************************************************************/
172 static block_t * CDDAReadBlocks( access_t * p_access )
173 {
174     block_t     *p_block;
175     cdda_data_t *p_cdda   = (cdda_data_t *) p_access->p_sys;
176     int          i_blocks = p_cdda->i_blocks_per_read;
177
178     dbg_print((INPUT_DBG_CALL|INPUT_DBG_EXT|INPUT_DBG_LSN), "called %d",
179               p_cdda->i_lsn);
180
181     /* Check end of file */
182     if( p_access->info.b_eof ) return NULL;
183
184     if( !p_cdda->b_header )
185       {
186         /* Return only the dummy RIFF header we created in Open/Init */
187         p_block = block_New( p_access, sizeof( WAVEHEADER ) );
188         memcpy( p_block->p_buffer, &p_cdda->waveheader, sizeof(WAVEHEADER) );
189         p_cdda->b_header = VLC_TRUE;
190         return p_block;
191     }
192
193     /* Check end of track */
194     while( p_cdda->i_lsn >= p_cdda->lsn[p_cdda->i_track+1] )
195     {
196         if( p_cdda->i_track >= p_cdda->i_first_track + p_cdda->i_titles - 1 )
197         {
198             p_access->info.b_eof = VLC_TRUE;
199             return NULL;
200         }
201
202         p_access->info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SIZE;
203         p_access->info.i_title++;
204         p_access->info.i_size =
205                   p_cdda->p_title[p_access->info.i_title]->i_size;
206         p_access->info.i_pos = 0;
207         p_cdda->i_track++;
208     }
209
210     /* Possibly adjust i_blocks so we don't read past the end of a track. */
211     if( p_cdda->i_lsn + i_blocks >= p_cdda->lsn[p_cdda->i_track+1] )
212     {
213         i_blocks = p_cdda->lsn[p_cdda->i_track+1 ] - p_cdda->i_lsn;
214     }
215
216     /* Do the actual reading */
217     p_block = block_New( p_access, i_blocks * CDIO_CD_FRAMESIZE_RAW );
218     if( !p_block)
219     {
220       msg_Err( p_access, "Cannot get a new block of size: %i",
221                i_blocks * CDIO_CD_FRAMESIZE_RAW );
222       return NULL;
223     }
224
225     if( cdio_read_audio_sectors( p_cdda->p_cdio, p_block->p_buffer,
226                                  p_cdda->i_lsn, i_blocks) != 0 )
227     {
228         msg_Err( p_access, "could not read sector %lu",
229                  (long unsigned int) p_cdda->i_lsn );
230         block_Release( p_block );
231
232         /* If we had problems above, assume the problem is with
233            the first sector of the read and set to skip it.  In
234            the future libcdio may have cdparanoia support.
235         */
236         p_cdda->i_lsn++;
237         p_access->info.i_pos += CDIO_CD_FRAMESIZE_RAW;
238         return NULL;
239     }
240
241     p_cdda->i_lsn        += i_blocks;
242     p_access->info.i_pos += p_block->i_buffer;
243
244     return p_block;
245 }
246
247 /****************************************************************************
248  * CDDASeek - change position for subsequent reads. For example, this
249  * can happen if the user moves a position slider bar in a GUI.
250  ****************************************************************************/
251 static int CDDASeek( access_t * p_access, int64_t i_pos )
252 {
253     cdda_data_t *p_cdda = (cdda_data_t *) p_access->p_sys;
254
255     p_cdda->i_lsn = p_cdda->lsn[p_cdda->i_track]
256                   + (i_pos / CDIO_CD_FRAMESIZE_RAW);
257     p_access->info.i_pos = i_pos;
258
259     dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT|INPUT_DBG_SEEK),
260                "lsn %lu, offset: %lld",
261                (long unsigned int) p_cdda->i_lsn, i_pos );
262     return VLC_SUCCESS;
263 }
264
265 /****************************************************************************
266  * Public functions
267  ****************************************************************************/
268
269 /*****************************************************************************
270  * Open: open cdda device or image file and initialize structures
271  *       for subsequent operations.
272  *****************************************************************************/
273 int E_(CDDAOpen)( vlc_object_t *p_this )
274 {
275     access_t    *p_access = (access_t*)p_this;
276     char *      psz_source = NULL;
277     cdda_data_t *p_cdda    = NULL;
278     CdIo        *p_cdio;
279     track_t     i_track = 1;
280     vlc_bool_t  b_single_track = false;
281     int         i_rc = VLC_EGENERIC;
282
283     p_access->p_sys = NULL;
284
285     /* Set where to log errors messages from libcdio. */
286     p_cdda_input = p_access;
287
288     /* parse the options passed in command line : */
289
290     if( p_access->psz_path && *p_access->psz_path )
291     {
292         char *psz_parser = psz_source = strdup( p_access->psz_path );
293
294         while( *psz_parser && *psz_parser != '@' )
295         {
296             psz_parser++;
297         }
298
299         if( *psz_parser == '@' )
300         {
301             /* Found options */
302             *psz_parser = '\0';
303             ++psz_parser;
304
305             if ('T' == *psz_parser || 't' == *psz_parser )
306             ++psz_parser;
307
308             i_track = (int)strtol( psz_parser, NULL, 10 );
309             i_track = i_track ? i_track : 1;
310             b_single_track = true;
311         }
312     }
313
314     if (!psz_source || !*psz_source)
315     {
316         /* No device/track given. Continue only when this plugin was
317            selected */
318         if( !p_this->b_force ) return VLC_EGENERIC;
319
320         psz_source = var_CreateGetString( p_this, "cd-audio" );
321
322         if( !psz_source || !*psz_source )
323         {
324             /* Scan for a CD-ROM drive with a CD-DA in it. */
325             char **cd_drives =
326               cdio_get_devices_with_cap(NULL,  CDIO_FS_AUDIO, false);
327
328             if (NULL == cd_drives || NULL == cd_drives[0] )
329             {
330                 msg_Err( p_access,
331                      "libcdio couldn't find something with a CD-DA in it" );
332                 if (cd_drives) cdio_free_device_list(cd_drives);
333                 return VLC_EGENERIC;
334             }
335
336             psz_source = strdup(cd_drives[0]);
337             cdio_free_device_list(cd_drives);
338         }
339     }
340
341     cdio_log_set_handler ( cdio_log_handler );
342
343     /* Open CDDA */
344     if( !(p_cdio = cdio_open( psz_source, DRIVER_UNKNOWN )) )
345     {
346         msg_Warn( p_access, "could not open %s", psz_source );
347         if (psz_source) free( psz_source );
348         return VLC_EGENERIC;
349     }
350
351     p_cdda = malloc( sizeof(cdda_data_t) );
352     if( p_cdda == NULL )
353     {
354         msg_Err( p_access, "out of memory" );
355         free( psz_source );
356         return VLC_ENOMEM;
357     }
358     memset( p_cdda, 0, sizeof(cdda_data_t) );
359
360 #ifdef HAVE_LIBCDDB
361     cddb_log_set_handler ( cddb_log_handler );
362     p_cdda->cddb.disc = NULL;
363     p_cdda->b_cddb_enabled =
364       config_GetInt( p_access, MODULE_STRING "-cddb-enabled" );
365 #endif
366
367     p_cdda->b_cdtext_enabled =
368       config_GetInt( p_access, MODULE_STRING "-cdtext-enabled" );
369
370     p_cdda->b_cdtext_prefer =
371       config_GetInt( p_access, MODULE_STRING "-cdtext-prefer" );
372
373     p_cdda->b_header = VLC_FALSE;
374     p_cdda->p_cdio   = p_cdio;
375     p_cdda->i_tracks = 0;
376     p_cdda->i_titles = 0;
377     p_cdda->i_track  = i_track;
378     p_cdda->i_debug  = config_GetInt(p_this, MODULE_STRING "-debug");
379     p_cdda->i_blocks_per_read
380                      = config_GetInt(p_this, MODULE_STRING "-blocks-per-read");
381
382     p_cdda->p_input  = vlc_object_find( p_access, VLC_OBJECT_INPUT,
383                                         FIND_PARENT );
384
385     if (0 == p_cdda->i_blocks_per_read)
386         p_cdda->i_blocks_per_read = DEFAULT_BLOCKS_PER_READ;
387
388     if ( p_cdda->i_blocks_per_read < MIN_BLOCKS_PER_READ
389          || p_cdda->i_blocks_per_read > MAX_BLOCKS_PER_READ )
390     {
391         msg_Warn( p_cdda_input,
392                 "Number of blocks (%d) has to be between %d and %d. "
393                 "Using %d.",
394                 p_cdda->i_blocks_per_read,
395                 MIN_BLOCKS_PER_READ, MAX_BLOCKS_PER_READ,
396                 DEFAULT_BLOCKS_PER_READ );
397         p_cdda->i_blocks_per_read = DEFAULT_BLOCKS_PER_READ;
398     }
399
400     dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "%s", psz_source );
401
402     /* Set up p_access */
403     p_access->pf_read    = NULL;
404     p_access->pf_block   = CDDAReadBlocks;
405     p_access->pf_control = CDDAControl;
406     p_access->pf_seek    = CDDASeek;
407
408     p_access->info.i_size      = 0;
409
410     p_access->info.i_update    = 0;
411     p_access->info.b_eof       = VLC_FALSE;
412     p_access->info.i_title     = 0;
413     p_access->info.i_seekpoint = 0;
414
415     p_access->p_sys     = (access_sys_t *) p_cdda;
416
417     /* We read the Table Of Content information */
418     i_rc = CDDAInit( p_access, p_cdda );
419     if ( VLC_SUCCESS != i_rc ) goto error;
420
421     CDDAFixupPlaylist( p_access, p_cdda, psz_source, b_single_track );
422
423     /* Build a WAV header to put in front of the output data.
424        This gets sent back in the Block (read) routine.
425      */
426     memset( &p_cdda->waveheader, 0, sizeof(WAVEHEADER) );
427     SetWLE( &p_cdda->waveheader.Format, 1 ); /*WAVE_FORMAT_PCM*/
428     SetWLE( &p_cdda->waveheader.BitsPerSample, 16);
429     p_cdda->waveheader.MainChunkID = VLC_FOURCC('R', 'I', 'F', 'F');
430     p_cdda->waveheader.Length = 0;                     /* we just don't know */
431     p_cdda->waveheader.ChunkTypeID = VLC_FOURCC('W', 'A', 'V', 'E');
432     p_cdda->waveheader.SubChunkID  = VLC_FOURCC('f', 'm', 't', ' ');
433     SetDWLE( &p_cdda->waveheader.SubChunkLength, 16);
434     SetWLE( &p_cdda->waveheader.Modus, 2);
435     SetDWLE( &p_cdda->waveheader.SampleFreq, CDDA_FREQUENCY_SAMPLE);
436     SetWLE( &p_cdda->waveheader.BytesPerSample,
437             2 /*Modus*/ * 16 /*BitsPerSample*/ / 8 );
438     SetDWLE( &p_cdda->waveheader.BytesPerSec,
439              2*16/8 /*BytesPerSample*/ * CDDA_FREQUENCY_SAMPLE );
440     p_cdda->waveheader.DataChunkID = VLC_FOURCC('d', 'a', 't', 'a');
441     p_cdda->waveheader.DataLength  = 0;    /* we just don't know */
442
443     /* PTS delay */
444     var_Create( p_access, MODULE_STRING "-caching",
445                 VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
446     vlc_object_release( p_cdda->p_input );
447     return VLC_SUCCESS;
448
449  error:
450     cdio_destroy( p_cdda->p_cdio );
451     if( psz_source) free( psz_source );
452     if( p_cdda ) {
453       if ( p_cdda->p_input )
454         vlc_object_release( p_cdda->p_input );
455       free(p_cdda);
456     }
457     
458     return i_rc;
459
460 }
461
462 /*****************************************************************************
463  * CDDAClose: closes cdda and frees any resources associded with it.
464  *****************************************************************************/
465 void E_(CDDAClose)( vlc_object_t *p_this )
466 {
467     access_t    *p_access = (access_t *) p_this;
468     cdda_data_t *p_cdda   = (cdda_data_t *) p_access->p_sys;
469     track_t      i;
470
471     dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "" );
472
473     /* Remove playlist titles */
474     for( i = 0; i < p_cdda->i_titles; i++ )
475     {
476         vlc_input_title_Delete( p_cdda->p_title[i] );
477     }
478
479     cdio_destroy( p_cdda->p_cdio );
480
481     cdio_log_set_handler (uninit_log_handler);
482
483 #ifdef HAVE_LIBCDDB
484     cddb_log_set_handler ((cddb_log_handler_t) uninit_log_handler);
485     if (p_cdda->b_cddb_enabled)
486       cddb_disc_destroy(p_cdda->cddb.disc);
487 #endif
488
489     if (p_cdda->psz_mcn) free( p_cdda->psz_mcn );
490     free( p_cdda );
491     p_cdda_input = NULL;
492 }
493
494 /*****************************************************************************
495  * Control: The front-end or vlc engine calls here to ether get
496  * information such as meta information or plugin capabilities or to
497  * issue miscellaneous "set" requests.
498  *****************************************************************************/
499 static int CDDAControl( access_t *p_access, int i_query, va_list args )
500 {
501     cdda_data_t  *p_cdda = (cdda_data_t *) p_access->p_sys;
502     int          *pi_int;
503     int i;
504
505     dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT|INPUT_DBG_EVENT),
506                "query %d", i_query );
507
508     switch( i_query )
509     {
510         /* Pass back a copy of meta information that was gathered when we
511            during the Open/Initialize call.
512          */
513         case ACCESS_GET_META:
514         {
515             vlc_meta_t **pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
516             if ( p_cdda->p_meta )
517             {
518                 *pp_meta = vlc_meta_Duplicate( p_cdda->p_meta );
519                 dbg_print( INPUT_DBG_META, "%s", "Meta copied" );
520                 return VLC_SUCCESS;
521             }
522             else {
523                 msg_Warn( p_access, "tried to copy NULL meta info" );
524                 return VLC_EGENERIC;
525             }
526         }
527
528         case ACCESS_CAN_SEEK:
529         case ACCESS_CAN_FASTSEEK:
530         case ACCESS_CAN_PAUSE:
531         case ACCESS_CAN_CONTROL_PACE:
532         {
533             vlc_bool_t *pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
534             *pb_bool = VLC_TRUE;
535             return VLC_SUCCESS;;
536         }
537
538         /* */
539         case ACCESS_GET_MTU:
540         {
541             pi_int = (int*)va_arg( args, int * );
542             *pi_int = p_cdda-> i_blocks_per_read * CDIO_CD_FRAMESIZE_RAW;
543             break;
544         }
545
546         case ACCESS_GET_PTS_DELAY:
547         {
548             int64_t *pi_64 = (int64_t*)va_arg( args, int64_t * );
549             *pi_64 = var_GetInteger( p_access, MODULE_STRING "-caching" )
550               * MILLISECONDS_PER_SEC;
551             break;
552         }
553
554         /* */
555         case ACCESS_SET_PAUSE_STATE:
556             break;
557
558         case ACCESS_GET_TITLE_INFO:
559         {
560             input_title_t ***ppp_title;
561             ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
562             pi_int    = (int*)va_arg( args, int* );
563             *((int*)va_arg( args, int* )) = 1; /* Title offset */
564
565             dbg_print ( INPUT_DBG_EVENT,
566                         "GET TITLE: i_tracks %d, i_tracks %d",
567                         p_cdda->i_tracks, p_cdda->i_tracks );
568
569             /* Duplicate title info */
570             if( p_cdda->i_titles == 0 )
571             {
572                 *pi_int = 0; ppp_title = NULL;
573                 return VLC_SUCCESS;
574             }
575             *pi_int = p_cdda->i_titles;
576             *ppp_title = malloc(sizeof( input_title_t **) * p_cdda->i_titles );
577
578             if (!*ppp_title) return VLC_ENOMEM;
579
580             for( i = 0; i < p_cdda->i_titles; i++ )
581             {
582               if ( p_cdda->p_title[i] ) {
583                    (*ppp_title)[i] =
584                      vlc_input_title_Duplicate( p_cdda->p_title[i] );
585               }
586               
587             }
588             break;
589         }
590
591         case ACCESS_SET_TITLE:
592         {
593             i = (int)va_arg( args, int );
594
595             dbg_print( INPUT_DBG_EVENT, "set title %d", i );
596             if( i != p_access->info.i_title )
597             {
598                 /* Update info */
599                 p_access->info.i_update |=
600                     INPUT_UPDATE_TITLE|INPUT_UPDATE_SIZE;
601                 p_access->info.i_title = i;
602                 p_access->info.i_size = p_cdda->p_title[i]->i_size;
603                 p_access->info.i_pos = 0;
604
605                 /* Next sector to read */
606                 p_cdda->i_lsn = p_cdda->lsn[p_cdda->i_first_track+i];
607             }
608             break;
609         }
610
611         case ACCESS_SET_SEEKPOINT:
612         case ACCESS_SET_PRIVATE_ID_STATE:
613             return VLC_EGENERIC;
614
615         default:
616             msg_Warn( p_access, "unimplemented query in control" );
617             return VLC_EGENERIC;
618
619     }
620     return VLC_SUCCESS;
621 }
622
623 /*****************************************************************************
624   CDDAInit:
625
626  Initialize information pertaining to the CD: the number of tracks,
627  first track number, LSNs for each track and the leadout. The leadout
628  information is stored after the last track. The LSN array is
629  0-origin, same as p_access->info.  Add first_track to get what track
630  number this is on the CD. Note: libcdio uses the real track number.
631
632  On input we assume p_cdda->p_cdio and p_cdda->i_track have been set.
633
634  We return the VLC-type status, e.g. VLC_SUCCESS, VLC_ENOMEM, etc.
635  *****************************************************************************/
636 static int CDDAInit( access_t *p_access, cdda_data_t *p_cdda )
637 {
638     track_t i;
639     discmode_t  discmode = CDIO_DISC_MODE_NO_INFO;
640
641     p_cdda->i_tracks       = cdio_get_num_tracks(p_cdda->p_cdio);
642     p_cdda->i_first_track  = cdio_get_first_track_num(p_cdda->p_cdio);
643
644     discmode = cdio_get_discmode(p_cdda->p_cdio);
645     switch(discmode) {
646     case CDIO_DISC_MODE_CD_DA:
647     case CDIO_DISC_MODE_CD_MIXED:
648         /* These are possible for CD-DA */
649         break;
650     default:
651         /* These are not possible for CD-DA */
652         msg_Err( p_access,
653                "Disc seems not to be CD-DA. libcdio reports it is %s",
654                discmode2str[discmode]
655                );
656         return VLC_EGENERIC;
657     }
658
659     /* Fill the lsn array with the track/sector matches.
660        Note cdio_get_track_lsn when given num_tracks + 1 will return
661        the leadout LSN.
662      */
663     for( i = 0 ; i <= p_cdda->i_tracks ; i++ )
664     {
665         track_t i_track = p_cdda->i_first_track + i;
666         (p_cdda->lsn)[ i_track ] = cdio_get_track_lsn(p_cdda->p_cdio, i_track);
667     }
668
669     /* Set reading start LSN. */
670     p_cdda->i_lsn = p_cdda->lsn[p_cdda->i_track];
671
672     return VLC_SUCCESS;
673 }
674
675 /* 
676  * Local variables:
677  *  mode: C
678  *  style: gnu
679  * End:
680  */