]> git.sesse.net Git - vlc/commitdiff
Improved CDDB information support in cdda.c
authorLaurent Aimar <fenrir@videolan.org>
Sun, 1 Feb 2009 13:45:28 +0000 (14:45 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 1 Feb 2009 14:02:52 +0000 (15:02 +0100)
modules/access/cdda.c
modules/meta_engine/taglib.cpp

index 6748651883f8ecde04c72c7a13534430f6c6c53d..fb6a71471619128898b33dda907032508c18a3da 100644 (file)
@@ -457,8 +457,28 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
                 if( psz_artist )
                     input_item_SetArtist( p_input_item, psz_artist );
             }
+
+            const char *psz_album = cddb_disc_get_title( p_sys->p_disc );
+            if( psz_album && *psz_album )
+                input_item_SetAlbum( p_input_item, psz_album );
+
+            const unsigned i_year = cddb_disc_get_year( p_sys->p_disc );
+            if( i_year > 0 )
+            {
+                char psz_date[4+1];
+                snprintf( psz_date, sizeof(psz_date), "%u", i_year );
+                input_item_SetDate( p_input_item, psz_date );
+            }
+
+            const char *psz_genre = cddb_disc_get_genre( p_sys->p_disc );
+            if( psz_genre && *psz_genre )
+                input_item_SetGenre( p_input_item, psz_genre );
         }
 #endif
+        char psz_num[3+1];
+        snprintf( psz_num, sizeof(psz_num), "%d", 1+i );
+        input_item_SetTrackNum( p_input_item, psz_num );
+
         input_item_AddSubItem( p_current, p_input_item );
         vlc_gc_decref( p_input_item );
         free( psz_uri ); free( psz_opt ); free( psz_name );
index 60b4a944d8b380d61a9f3c492e6c680d8b0bc1f1..0a62e661782ccd0d0c243b51846b62557143b9d3 100644 (file)
@@ -366,7 +366,7 @@ static int ReadMeta( vlc_object_t* p_this)
     SET( comment, Description );
     SET( genre, Genre );
     SETINT( year, Date );
-    SETINT( track, Tracknum );
+    SETINT( track, TrackNum );
 
 #undef SETINT
 #undef SET