Made track write counter of SAO count rather too much than too few bytes

This commit is contained in:
Thomas Schmitt 2006-11-08 17:28:56 +00:00
parent 140ff9ade4
commit dad50348db
2 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2006.11.08.165648"
#define Cdrskin_timestamP "2006.11.08.172918"

View File

@ -685,8 +685,9 @@ int burn_write_track(struct burn_write_opts *o, struct burn_session *s,
if (err == BE_CANCELLED)
{ ret = 0; goto ex; }
/* A61101 : probably this is not payload data */
/* t->writecount += d->buffer->bytes; */
/* A61101 : probably this is not all payload data */
/* A61108 : but audio count is short without this */
t->writecount += d->buffer->bytes;
d->nwa += d->buffer->sectors;
d->buffer->bytes = 0;