formatting cleanups convert more stuff to the generic seeking/convert/query interface

Original commit message from CVS:
formatting cleanups
convert more stuff to the generic seeking/convert/query interface
This commit is contained in:
Wim Taymans 2002-10-31 00:06:48 +00:00
parent f5f94ecf02
commit 5207b79805
2 changed files with 407 additions and 431 deletions

File diff suppressed because it is too large Load diff

View file

@ -74,7 +74,7 @@ struct _CDParanoia {
gchar *device;
gchar *generic_device;
gint start_track, end_track, cur_track;
gint start_track, end_track;
gint start_sector, end_sector;
gint last_track;
gint default_sectors;
@ -83,7 +83,7 @@ struct _CDParanoia {
gint read_speed;
gint toc_offset;
gboolean toc_bias;
gboolean never_skip;
gint never_skip;
gboolean abort_on_skip;
gint paranoia_mode;
@ -95,9 +95,9 @@ struct _CDParanoia {
/* hacks by Gordon Irving */
gint no_tracks;
gchar *discid;
gchar *offsets;
gchar *total_seconds;
gchar discid[20];
gint64 offsets[MAXTRK];
gint64 total_seconds;
};
struct _CDParanoiaClass {