]> git.sesse.net Git - vlc/blob - modules/access/cdda.c
CDDA: cosmetics and copyright
[vlc] / modules / access / cdda.c
1 /*****************************************************************************
2  * cdda.c : CD digital audio input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2000, 2003-2006, 2008-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /**
26  * Todo:
27  *   - Improve CDDB support (non-blocking, cache, ...)
28  *   - Fix tracknumber in MRL
29  */
30
31 /*****************************************************************************
32  * Preamble
33  *****************************************************************************/
34
35 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <vlc_common.h>
40 #include <vlc_plugin.h>
41 #include <vlc_input.h>
42 #include <vlc_access.h>
43 #include <vlc_meta.h>
44 #include <vlc_charset.h>
45
46 #include <vlc_codecs.h> /* For WAVEHEADER */
47 #include "vcd/cdrom.h"
48
49 #ifdef HAVE_LIBCDDB
50 #include <cddb/cddb.h>
51 #endif
52
53 #include <errno.h>
54
55 /*****************************************************************************
56  * Module descriptior
57  *****************************************************************************/
58 static int  Open ( vlc_object_t * );
59 static void Close( vlc_object_t * );
60
61 #define CACHING_TEXT N_("Caching value in ms")
62 #define CACHING_LONGTEXT N_( \
63     "Default caching value for Audio CDs. This " \
64     "value should be set in milliseconds." )
65
66 vlc_module_begin ()
67     set_shortname( N_("Audio CD"))
68     set_description( N_("Audio CD input") )
69     set_capability( "access", 10 )
70     set_category( CAT_INPUT )
71     set_subcategory( SUBCAT_INPUT_ACCESS )
72     set_callbacks( Open, Close )
73
74     add_usage_hint( N_("[cdda:][device][@[track]]") )
75     add_integer( "cdda-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
76                  CACHING_LONGTEXT, true )
77         change_safe()
78
79     add_integer( "cdda-track", 0 , NULL, NULL, NULL, true )
80         change_internal ()
81     add_integer( "cdda-first-sector", -1, NULL, NULL, NULL, true )
82         change_internal ()
83     add_integer( "cdda-last-sector", -1, NULL, NULL, NULL, true )
84         change_internal ()
85
86 #ifdef HAVE_LIBCDDB
87     add_string( "cddb-server", "freedb.freedb.org", NULL,
88                 N_( "CDDB Server" ), N_( "Address of the CDDB server to use." ),
89                 true )
90     add_integer( "cddb-port", 8880, NULL,
91                 N_( "CDDB port" ), N_( "CDDB Server port to use." ), true )
92 #endif
93
94     add_shortcut( "cdda" )
95     add_shortcut( "cddasimple" )
96 vlc_module_end ()
97
98
99 /* how many blocks VCDRead will read in each loop */
100 #define CDDA_BLOCKS_ONCE 20
101 #define CDDA_DATA_ONCE   (CDDA_BLOCKS_ONCE * CDDA_DATA_SIZE)
102
103 /*****************************************************************************
104  * Access: local prototypes
105  *****************************************************************************/
106 struct access_sys_t
107 {
108     vcddev_t    *vcddev;                            /* vcd device descriptor */
109
110     /* Current position */
111     int         i_sector;                                  /* Current Sector */
112     int *       p_sectors;                                  /* Track sectors */
113
114     /* Wave header for the output data */
115     WAVEHEADER  waveheader;
116     bool  b_header;
117
118     int         i_track;
119     int         i_first_sector;
120     int         i_last_sector;
121 };
122
123 static block_t *Block( access_t * );
124 static int      Seek( access_t *, int64_t );
125 static int      Control( access_t *, int, va_list );
126
127 static int GetTracks( access_t *p_access, input_item_t *p_current );
128
129 #ifdef HAVE_LIBCDDB
130 static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors );
131 #endif
132
133 /*****************************************************************************
134  * Open: open cdda
135  *****************************************************************************/
136 static int Open( vlc_object_t *p_this )
137 {
138     access_t     *p_access = (access_t*)p_this;
139     access_sys_t *p_sys;
140     vcddev_t *vcddev;
141     char *psz_name;
142     int i_ret;
143
144     if( !p_access->psz_path || !*p_access->psz_path )
145     {
146         /* Only when selected */
147         if( !p_this->b_force ) return VLC_EGENERIC;
148
149         psz_name = var_CreateGetString( p_this, "cd-audio" );
150         if( !psz_name || !*psz_name )
151         {
152             free( psz_name );
153             return VLC_EGENERIC;
154         }
155     }
156     else psz_name = ToLocaleDup( p_access->psz_path );
157
158 #ifdef WIN32
159     if( psz_name[0] && psz_name[1] == ':' &&
160         psz_name[2] == '\\' && psz_name[3] == '\0' ) psz_name[2] = '\0';
161 #endif
162
163     /* Open CDDA */
164     if( (vcddev = ioctl_Open( VLC_OBJECT(p_access), psz_name )) == NULL )
165     {
166         msg_Warn( p_access, "could not open %s", psz_name );
167         free( psz_name );
168         return VLC_EGENERIC;
169     }
170     free( psz_name );
171
172     /* Set up p_access */
173     STANDARD_BLOCK_ACCESS_INIT
174     p_sys->vcddev = vcddev;
175
176    /* Do we play a single track ? */
177    p_sys->i_track = var_CreateGetInteger( p_access, "cdda-track" ) - 1;
178
179    if( p_sys->i_track < 0 )
180    {
181         /* We only do separate items if the whole disc is requested */
182         input_thread_t *p_input = access_GetParentInput( p_access );
183
184         i_ret = -1;
185         if( p_input )
186         {
187             input_item_t *p_current = input_GetItem( p_input );
188             if( p_current )
189                 i_ret = GetTracks( p_access, p_current );
190
191             vlc_object_release( p_input );
192         }
193         if( i_ret < 0 )
194             goto error;
195     }
196     else
197     {
198         /* Build a WAV header for the output data */
199         memset( &p_sys->waveheader, 0, sizeof(WAVEHEADER) );
200         SetWLE( &p_sys->waveheader.Format, 1 ); /*WAVE_FORMAT_PCM*/
201         SetWLE( &p_sys->waveheader.BitsPerSample, 16);
202         p_sys->waveheader.MainChunkID = VLC_FOURCC('R', 'I', 'F', 'F');
203         p_sys->waveheader.Length = 0;               /* we just don't know */
204         p_sys->waveheader.ChunkTypeID = VLC_FOURCC('W', 'A', 'V', 'E');
205         p_sys->waveheader.SubChunkID = VLC_FOURCC('f', 'm', 't', ' ');
206         SetDWLE( &p_sys->waveheader.SubChunkLength, 16);
207         SetWLE( &p_sys->waveheader.Modus, 2);
208         SetDWLE( &p_sys->waveheader.SampleFreq, 44100);
209         SetWLE( &p_sys->waveheader.BytesPerSample,
210                     2 /*Modus*/ * 16 /*BitsPerSample*/ / 8 );
211         SetDWLE( &p_sys->waveheader.BytesPerSec,
212                     2*16/8 /*BytesPerSample*/ * 44100 /*SampleFreq*/ );
213         p_sys->waveheader.DataChunkID = VLC_FOURCC('d', 'a', 't', 'a');
214         p_sys->waveheader.DataLength = 0;           /* we just don't know */
215
216         p_sys->i_first_sector = var_CreateGetInteger( p_access,
217                                                       "cdda-first-sector" );
218         p_sys->i_last_sector  = var_CreateGetInteger( p_access,
219                                                       "cdda-last-sector" );
220         /* Tracknumber in MRL */
221         if( p_sys->i_first_sector < 0 || p_sys->i_last_sector < 0 )
222         {
223             const int i_titles = ioctl_GetTracksMap( VLC_OBJECT(p_access),
224                                                      p_sys->vcddev, &p_sys->p_sectors );
225             if( p_sys->i_track >= i_titles )
226             {
227                 msg_Err( p_access, "invalid track number" );
228                 goto error;
229             }
230             p_sys->i_first_sector = p_sys->p_sectors[p_sys->i_track];
231             p_sys->i_last_sector = p_sys->p_sectors[p_sys->i_track+1];
232         }
233
234         p_sys->i_sector = p_sys->i_first_sector;
235         p_access->info.i_size = (p_sys->i_last_sector - p_sys->i_first_sector)
236                                      * (int64_t)CDDA_DATA_SIZE;
237     }
238
239     /* PTS delay */
240     var_Create( p_access, "cdda-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
241
242     return VLC_SUCCESS;
243
244 error:
245     free( p_sys->p_sectors );
246     ioctl_Close( VLC_OBJECT(p_access), p_sys->vcddev );
247     free( p_sys );
248     return VLC_EGENERIC;
249 }
250
251 /*****************************************************************************
252  * Close: closes cdda
253  *****************************************************************************/
254 static void Close( vlc_object_t *p_this )
255 {
256     access_t     *p_access = (access_t *)p_this;
257     access_sys_t *p_sys = p_access->p_sys;
258
259     free( p_sys->p_sectors );
260     ioctl_Close( p_this, p_sys->vcddev );
261     free( p_sys );
262 }
263
264 /*****************************************************************************
265  * Block: read data (CDDA_DATA_ONCE)
266  *****************************************************************************/
267 static block_t *Block( access_t *p_access )
268 {
269     access_sys_t *p_sys = p_access->p_sys;
270     int i_blocks = CDDA_BLOCKS_ONCE;
271     block_t *p_block;
272
273     if( p_sys->i_track < 0 ) p_access->info.b_eof = true;
274
275     /* Check end of file */
276     if( p_access->info.b_eof ) return NULL;
277
278     if( !p_sys->b_header )
279     {
280         /* Return only the header */
281         p_block = block_New( p_access, sizeof( WAVEHEADER ) );
282         memcpy( p_block->p_buffer, &p_sys->waveheader, sizeof(WAVEHEADER) );
283         p_sys->b_header = true;
284         return p_block;
285     }
286
287     if( p_sys->i_sector >= p_sys->i_last_sector )
288     {
289         p_access->info.b_eof = true;
290         return NULL;
291     }
292
293     /* Don't read too far */
294     if( p_sys->i_sector + i_blocks >= p_sys->i_last_sector )
295         i_blocks = p_sys->i_last_sector - p_sys->i_sector;
296
297     /* Do the actual reading */
298     if( !( p_block = block_New( p_access, i_blocks * CDDA_DATA_SIZE ) ) )
299     {
300         msg_Err( p_access, "cannot get a new block of size: %i",
301                  i_blocks * CDDA_DATA_SIZE );
302         return NULL;
303     }
304
305     if( ioctl_ReadSectors( VLC_OBJECT(p_access), p_sys->vcddev,
306             p_sys->i_sector, p_block->p_buffer, i_blocks, CDDA_TYPE ) < 0 )
307     {
308         msg_Err( p_access, "cannot read sector %i", p_sys->i_sector );
309         block_Release( p_block );
310
311         /* Try to skip one sector (in case of bad sectors) */
312         p_sys->i_sector++;
313         p_access->info.i_pos += CDDA_DATA_SIZE;
314         return NULL;
315     }
316
317     /* Update a few values */
318     p_sys->i_sector += i_blocks;
319     p_access->info.i_pos += p_block->i_buffer;
320
321     return p_block;
322 }
323
324 /****************************************************************************
325  * Seek
326  ****************************************************************************/
327 static int Seek( access_t *p_access, int64_t i_pos )
328 {
329     access_sys_t *p_sys = p_access->p_sys;
330
331     /* Next sector to read */
332     p_sys->i_sector = p_sys->i_first_sector + i_pos / CDDA_DATA_SIZE;
333     p_access->info.i_pos = i_pos;
334
335     return VLC_SUCCESS;
336 }
337
338 /*****************************************************************************
339  * Control:
340  *****************************************************************************/
341 static int Control( access_t *p_access, int i_query, va_list args )
342 {
343     switch( i_query )
344     {
345         case ACCESS_CAN_SEEK:
346         case ACCESS_CAN_FASTSEEK:
347         case ACCESS_CAN_PAUSE:
348         case ACCESS_CAN_CONTROL_PACE:
349             *va_arg( args, bool* ) = true;
350             break;
351
352         case ACCESS_GET_PTS_DELAY:
353             *va_arg( args, int64_t * ) =
354                    var_GetInteger( p_access, "cdda-caching" ) * INT64_C(1000);
355             break;
356
357         case ACCESS_SET_PAUSE_STATE:
358             break;
359
360         case ACCESS_GET_TITLE_INFO:
361         case ACCESS_SET_TITLE:
362         case ACCESS_GET_META:
363         case ACCESS_SET_SEEKPOINT:
364         case ACCESS_SET_PRIVATE_ID_STATE:
365         case ACCESS_GET_CONTENT_TYPE:
366             return VLC_EGENERIC;
367
368         default:
369             msg_Warn( p_access, "unimplemented query in control" );
370             return VLC_EGENERIC;
371     }
372     return VLC_SUCCESS;
373 }
374
375 static int GetTracks( access_t *p_access, input_item_t *p_current )
376 {
377     access_sys_t *p_sys = p_access->p_sys;
378
379     const int i_titles = ioctl_GetTracksMap( VLC_OBJECT(p_access),
380                                              p_sys->vcddev, &p_sys->p_sectors );
381     if( i_titles <= 0 )
382     {
383         if( i_titles < 0 )
384             msg_Err( p_access, "unable to count tracks" );
385         else if( i_titles <= 0 )
386             msg_Err( p_access, "no audio tracks found" );
387         return VLC_EGENERIC;;
388     }
389
390     /* */
391     input_item_SetName( p_current, "Audio CD" );
392
393     const char *psz_album = NULL;
394     const char *psz_year = NULL;
395     const char *psz_genre = NULL;
396     const char *psz_artist = NULL;
397     const char *psz_description = NULL;
398
399 /* Return true if the given string is not NULL and not empty */
400 #define NONEMPTY( psz ) ( (psz) && *(psz) )
401 /* If the given string is NULL or empty, fill it by the return value of 'code' */
402 #define ON_EMPTY( psz, code ) do { if( !NONEMPTY( psz) ) { (psz) = code; } } while(0)
403
404     /* Retreive CDDB informations */
405 #ifdef HAVE_LIBCDDB
406     char psz_year_buffer[4+1];
407     cddb_disc_t *p_disc = GetCDDBInfo( p_access, i_titles, p_sys->p_sectors );
408     if( p_disc )
409     {
410         psz_album = cddb_disc_get_title( p_disc );
411         psz_genre = cddb_disc_get_genre( p_disc );
412
413         /* */
414         const unsigned i_year = cddb_disc_get_year( p_disc );
415         if( i_year > 0 )
416         {
417             psz_year = psz_year_buffer;
418             snprintf( psz_year_buffer, sizeof(psz_year_buffer), "%u", i_year );
419         }
420
421         /* Set artist only if unique */
422         for( int i = 0; i < i_titles; i++ )
423         {
424             cddb_track_t *t = cddb_disc_get_track( p_disc, i );
425             if( !t )
426                 continue;
427             const char *psz_track_artist = cddb_track_get_artist( t );
428             if( psz_artist && psz_track_artist &&
429                 strcmp( psz_artist, psz_track_artist ) )
430             {
431                 psz_artist = NULL;
432                 break;
433             }
434             psz_artist = psz_track_artist;
435         }
436     }
437 #endif
438
439     /* */
440     vlc_meta_t **pp_cd_text;
441     int        i_cd_text;
442
443     if( ioctl_GetCdText( VLC_OBJECT(p_access), p_sys->vcddev, &pp_cd_text, &i_cd_text ) )
444     {
445         msg_Dbg( p_access, "CD-TEXT information missing" );
446         i_cd_text = 0;
447         pp_cd_text = NULL;
448     }
449
450     /* Retreive CD-TEXT informations but prefer CDDB */
451     if( i_cd_text > 0 && pp_cd_text[0] )
452     {
453         const vlc_meta_t *p_disc = pp_cd_text[0];
454         ON_EMPTY( psz_album,       vlc_meta_Get( p_disc, vlc_meta_Album ) );
455         ON_EMPTY( psz_genre,       vlc_meta_Get( p_disc, vlc_meta_Genre ) );
456         ON_EMPTY( psz_artist,      vlc_meta_Get( p_disc, vlc_meta_Artist ) );
457         ON_EMPTY( psz_description, vlc_meta_Get( p_disc, vlc_meta_Description ) );
458     }
459
460     if( NONEMPTY( psz_album ) )
461     {
462         input_item_SetName( p_current, psz_album );
463         input_item_SetAlbum( p_current, psz_album );
464     }
465
466     if( NONEMPTY( psz_genre ) )
467         input_item_SetGenre( p_current, psz_genre );
468
469     if( NONEMPTY( psz_artist ) )
470         input_item_SetArtist( p_current, psz_artist );
471
472     if( NONEMPTY( psz_year ) )
473         input_item_SetDate( p_current, psz_year );
474
475     if( NONEMPTY( psz_description ) )
476         input_item_SetDescription( p_current, psz_description );
477
478     const mtime_t i_duration = (int64_t)( p_sys->p_sectors[i_titles] - p_sys->p_sectors[0] ) *
479                                CDDA_DATA_SIZE * 1000000 / 44100 / 2 / 2;
480     input_item_SetDuration( p_current, i_duration );
481
482     /* Build title table */
483     for( int i = 0; i < i_titles; i++ )
484     {
485         input_item_t *p_input_item;
486
487         char *psz_uri, *psz_opt, *psz_first, *psz_last;
488         char *psz_name;
489
490         msg_Dbg( p_access, "track[%d] start=%d", i, p_sys->p_sectors[i] );
491
492         /* */
493         if( asprintf( &psz_uri, "cdda://%s", p_access->psz_path ) == -1 )
494             psz_uri = NULL;
495         if( asprintf( &psz_opt, "cdda-track=%i", i+1 ) == -1 )
496             psz_opt = NULL;
497         if( asprintf( &psz_first, "cdda-first-sector=%i",p_sys->p_sectors[i] ) == -1 )
498             psz_first = NULL;
499         if( asprintf( &psz_last, "cdda-last-sector=%i", p_sys->p_sectors[i+1] ) == -1 )
500             psz_last = NULL;
501
502         /* Define a "default name" */
503         if( asprintf( &psz_name, _("Audio CD - Track %02i"), (i+1) ) == -1 )
504             psz_name = NULL;
505
506         /* Create playlist items */
507         const mtime_t i_duration = (int64_t)( p_sys->p_sectors[i+1] - p_sys->p_sectors[i] ) *
508                                    CDDA_DATA_SIZE * 1000000 / 44100 / 2 / 2;
509         p_input_item = input_item_NewWithType( VLC_OBJECT( p_access ),
510                                               psz_uri, psz_name, 0, NULL, 0, i_duration,
511                                               ITEM_TYPE_DISC );
512         input_item_CopyOptions( p_current, p_input_item );
513         input_item_AddOption( p_input_item, psz_first, VLC_INPUT_OPTION_TRUSTED );
514         input_item_AddOption( p_input_item, psz_last, VLC_INPUT_OPTION_TRUSTED );
515         input_item_AddOption( p_input_item, psz_opt, VLC_INPUT_OPTION_TRUSTED );
516
517         const char *psz_track_title = NULL;
518         const char *psz_track_artist = NULL;
519         const char *psz_track_genre = NULL;
520         const char *psz_track_description = NULL;
521
522 #ifdef HAVE_LIBCDDB
523         /* Retreive CDDB informations */
524         if( p_disc )
525         {
526             cddb_track_t *t = cddb_disc_get_track( p_disc, i );
527             if( t != NULL )
528             {
529                 psz_track_title = cddb_track_get_title( t );
530                 psz_track_artist = cddb_track_get_artist( t );
531             }
532         }
533 #endif
534
535         /* Retreive CD-TEXT informations but prefer CDDB */
536         if( i+1 < i_cd_text && pp_cd_text[i+1] )
537         {
538             const vlc_meta_t *t = pp_cd_text[i+1];
539
540             ON_EMPTY( psz_track_title,       vlc_meta_Get( t, vlc_meta_Title ) );
541             ON_EMPTY( psz_track_artist,      vlc_meta_Get( t, vlc_meta_Artist ) );
542             ON_EMPTY( psz_track_genre,       vlc_meta_Get( t, vlc_meta_Genre ) );
543             ON_EMPTY( psz_track_description, vlc_meta_Get( t, vlc_meta_Description ) );
544         }
545
546         /* */
547         ON_EMPTY( psz_track_artist,       psz_artist );
548         ON_EMPTY( psz_track_genre,        psz_genre );
549         ON_EMPTY( psz_track_description,  psz_description );
550
551         /* */
552         if( NONEMPTY( psz_track_title ) )
553         {
554             input_item_SetName( p_input_item, psz_track_title );
555             input_item_SetTitle( p_input_item, psz_track_title );
556         }
557
558         if( NONEMPTY( psz_track_artist ) )
559             input_item_SetArtist( p_input_item, psz_track_artist );
560
561         if( NONEMPTY( psz_track_genre ) )
562             input_item_SetGenre( p_input_item, psz_track_genre );
563
564         if( NONEMPTY( psz_track_description ) )
565             input_item_SetDescription( p_input_item, psz_track_description );
566
567         if( NONEMPTY( psz_album ) )
568             input_item_SetAlbum( p_input_item, psz_album );
569
570         if( NONEMPTY( psz_year ) )
571             input_item_SetDate( p_input_item, psz_year );
572
573         char psz_num[3+1];
574         snprintf( psz_num, sizeof(psz_num), "%d", 1+i );
575         input_item_SetTrackNum( p_input_item, psz_num );
576
577         input_item_AddSubItem( p_current, p_input_item );
578         vlc_gc_decref( p_input_item );
579         free( psz_uri ); free( psz_opt ); free( psz_name );
580         free( psz_first ); free( psz_last );
581     }
582 #undef ON_EMPTY
583 #undef NONEMPTY
584
585     /* */
586     for( int i = 0; i < i_cd_text; i++ )
587     {
588         vlc_meta_t *p_meta = pp_cd_text[i];
589         if( !p_meta )
590             continue;
591         vlc_meta_Delete( p_meta );
592     }
593     free( pp_cd_text );
594
595 #ifdef HAVE_LIBCDDB
596     if( p_disc )
597         cddb_disc_destroy( p_disc );
598 #endif
599     return VLC_SUCCESS;
600 }
601
602 #ifdef HAVE_LIBCDDB
603 static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors )
604 {
605     if( var_CreateGetInteger( p_access, "album-art" ) == ALBUM_ART_WHEN_ASKED )
606         return NULL;
607
608     /* */
609     cddb_conn_t *p_cddb = cddb_new();
610     if( !p_cddb )
611     {
612         msg_Warn( p_access, "unable to use CDDB" );
613         return NULL;
614     }
615
616     /* */
617     char *psz_tmp = config_GetPsz( p_access, "cddb-server" );
618     cddb_set_server_name( p_cddb, psz_tmp );
619     free( psz_tmp );
620
621     cddb_set_server_port( p_cddb, config_GetInt( p_access, "cddb-port" ) );
622
623     cddb_set_email_address( p_cddb, "vlc@videolan.org" );
624
625     /// \todo
626     cddb_cache_disable( p_cddb );
627
628 //    cddb_cache_set_dir( p_cddb,
629 //                     config_GetPsz( p_access,
630 //                                    MODULE_STRING "-cddb-cachedir") );
631
632     cddb_set_timeout( p_cddb, 10 );
633
634     /// \todo
635     cddb_http_disable( p_cddb );
636
637     /* */
638     cddb_disc_t *p_disc = cddb_disc_new();
639     if( !p_disc )
640     {
641         msg_Err( p_access, "unable to create CDDB disc structure." );
642         goto error;
643     }
644
645     int64_t i_length = 0;
646     for( int i = 0; i < i_titles; i++ )
647     {
648         cddb_track_t *t = cddb_track_new();
649         cddb_track_set_frame_offset( t, p_sectors[i] );
650         cddb_disc_add_track( p_disc, t );
651         const int64_t i_size = ( p_sectors[i+1] - p_sectors[i] ) *
652                                (int64_t)CDDA_DATA_SIZE;
653         i_length += INT64_C(1000000) * i_size / 44100 / 4  ;
654     }
655
656     cddb_disc_set_length( p_disc, (int)(i_length/1000000) );
657
658     if( !cddb_disc_calc_discid( p_disc ) )
659     {
660         msg_Err( p_access, "CDDB disc ID calculation failed" );
661         goto error;
662     }
663
664     const int i_matches = cddb_query( p_cddb, p_disc );
665     if( i_matches <= 0 )
666     {
667         msg_Warn( p_access, "CDDB error: %s", cddb_error_str(errno));
668         goto error;
669     }
670
671     if( i_matches > 1 )
672         msg_Warn( p_access, "found %d matches in CDDB. Using first one.", i_matches );
673     cddb_read( p_cddb, p_disc );
674
675     cddb_destroy( p_cddb);
676     return p_disc;
677
678 error:
679     if( p_disc )
680         cddb_disc_destroy( p_disc );
681     cddb_destroy( p_cddb );
682     return NULL;
683 }
684 #endif /*HAVE_LIBCDDB*/
685