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