X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fcdda.c;h=48c664b29e1c39c5d813b24b9e7602d39b7077cd;hb=47e8817acdc58829acfbf5d02913007164b0a0bf;hp=43b824b8f5dacdf97fbe0cfd669578f0f612a8fb;hpb=6d4bc50f38f446d21a9d8eabf983e7b6584d9474;p=vlc diff --git a/modules/access/cdda.c b/modules/access/cdda.c index 43b824b8f5..48c664b29e 100644 --- a/modules/access/cdda.c +++ b/modules/access/cdda.c @@ -90,8 +90,7 @@ vlc_module_begin () N_( "CDDB Server port to use." ), true ) #endif - add_shortcut( "cdda" ) - add_shortcut( "cddasimple" ) + add_shortcut( "cdda", "cddasimple" ) vlc_module_end () @@ -401,7 +400,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current ) /* If the given string is NULL or empty, fill it by the return value of 'code' */ #define ON_EMPTY( psz, code ) do { if( !NONEMPTY( psz) ) { (psz) = code; } } while(0) - /* Retreive CDDB informations */ + /* Retreive CDDB information */ #ifdef HAVE_LIBCDDB char psz_year_buffer[4+1]; msg_Dbg( p_access, "fetching infos with CDDB" ); @@ -448,7 +447,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current ) pp_cd_text = NULL; } - /* Retrieve CD-TEXT informations but prefer CDDB */ + /* Retrieve CD-TEXT information but prefer CDDB */ if( i_cd_text > 0 && pp_cd_text[0] ) { const vlc_meta_t *p_disc = pp_cd_text[0]; @@ -523,7 +522,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current ) const char *psz_track_description = NULL; #ifdef HAVE_LIBCDDB - /* Retreive CDDB informations */ + /* Retreive CDDB information */ if( p_disc ) { cddb_track_t *t = cddb_disc_get_track( p_disc, i ); @@ -535,7 +534,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current ) } #endif - /* Retreive CD-TEXT informations but prefer CDDB */ + /* Retreive CD-TEXT information but prefer CDDB */ if( i+1 < i_cd_text && pp_cd_text[i+1] ) { const vlc_meta_t *t = pp_cd_text[i+1];