]> git.sesse.net Git - vlc/commitdiff
CDDB: add the correct pregap for calculation
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 2 Jan 2015 14:20:57 +0000 (15:20 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 2 Jan 2015 14:45:52 +0000 (15:45 +0100)
150sectors or 2 seconds

Should close #4370

modules/access/cdda.c

index 5d31a7d2a1dea2a708c4950d78558d7ca071b678..dd483e61f24e6a289fb33b36156e022536ea87ba 100644 (file)
@@ -662,11 +662,12 @@ static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sector
         goto error;
     }
 
-    int64_t i_length = 0;
+    int64_t i_length = 2000000; /* PreGap */
     for( int i = 0; i < i_titles; i++ )
     {
         cddb_track_t *t = cddb_track_new();
-        cddb_track_set_frame_offset( t, p_sectors[i] );
+        cddb_track_set_frame_offset( t, p_sectors[i] + 150 );  /* Pregap offset */
+
         cddb_disc_add_track( p_disc, t );
         const int64_t i_size = ( p_sectors[i+1] - p_sectors[i] ) *
                                (int64_t)CDDA_DATA_SIZE;