Commit c95ed812 authored by Konstantin Pavlov's avatar Konstantin Pavlov

CDDA: Implement disc information caching.

Note that CDDA module still needs to query freedb service for disc ID,
only the track information is cached.
parent 3d571632
......@@ -24,7 +24,7 @@
/**
* Todo:
* - Improve CDDB support (non-blocking, cache, ...)
* - Improve CDDB support (non-blocking, ...)
* - Fix tracknumber in MRL
*/
......@@ -619,12 +619,16 @@ static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sector
cddb_set_http_path_query( p_cddb, "/~cddb/cddb.cgi" );
cddb_set_http_path_submit( p_cddb, "/~cddb/submit.cgi" );
/// \todo
cddb_cache_disable( p_cddb );
// cddb_cache_set_dir( p_cddb,
// var_InheritString( p_access,
// MODULE_STRING "-cddb-cachedir") );
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 );
......
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