Made fifo based -isosize read 64k first and the rest only at normal stage
This commit is contained in:
parent
26745b4064
commit
a8c69206fe
@ -2,7 +2,7 @@
|
|||||||
.\" First parameter, NAME, should be all caps
|
.\" First parameter, NAME, should be all caps
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
.\" other parameters are allowed: see man(7), man(1)
|
||||||
.TH CDRSKIN 1 "March 15, 2007"
|
.TH CDRSKIN 1 "March 28, 2007"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
.\" Some roff macros, for reference:
|
.\" Some roff macros, for reference:
|
||||||
@ -408,6 +408,22 @@ option fifo_start_at=size.
|
|||||||
.BI gracetime= seconds
|
.BI gracetime= seconds
|
||||||
Set the grace time before starting to write. (Default is 0)
|
Set the grace time before starting to write. (Default is 0)
|
||||||
.TP
|
.TP
|
||||||
|
.BI -isosize
|
||||||
|
The next track following this option will try to obtain its source size from
|
||||||
|
the header information out of the first few blocks of the source data.
|
||||||
|
If these blocks indicate an ISO-9660 filesystem then its declared size
|
||||||
|
will be used under the assumption that it is a single session filesystem.
|
||||||
|
.br
|
||||||
|
If not, then the burn run will be aborted.
|
||||||
|
.br
|
||||||
|
The range of -isosize is exactly one track. Further tracks may be preceeded
|
||||||
|
by further -isosize options, though. At least 15 blocks of padding will be
|
||||||
|
added to each -isosize track. But be advised to use padsize=300k.
|
||||||
|
.br
|
||||||
|
This option can be performed on track sources which are regular files or block
|
||||||
|
devices. For the first track of the session it can be performed on any type
|
||||||
|
of source if there is a fifo of at least 64 kB. See option fs= .
|
||||||
|
.TP
|
||||||
.BI msifile= path
|
.BI msifile= path
|
||||||
Run option -msinfo and copy the result line into the file given by path.
|
Run option -msinfo and copy the result line into the file given by path.
|
||||||
Unlike -msinfo this option does not redirect all normal output away from
|
Unlike -msinfo this option does not redirect all normal output away from
|
||||||
@ -908,7 +924,7 @@ fs=16m
|
|||||||
.br
|
.br
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.TP
|
.TP
|
||||||
Formatting track sources for cdrskin:
|
Formatting data track sources for cdrskin:
|
||||||
.br
|
.br
|
||||||
.BR mkisofs (8),
|
.BR mkisofs (8),
|
||||||
.BR genisoimage (8),
|
.BR genisoimage (8),
|
||||||
|
@ -777,6 +777,7 @@ struct CdrtracK {
|
|||||||
int trackno;
|
int trackno;
|
||||||
|
|
||||||
char source_path[Cdrskin_strleN];
|
char source_path[Cdrskin_strleN];
|
||||||
|
char original_source_path[Cdrskin_strleN];
|
||||||
int source_fd;
|
int source_fd;
|
||||||
int is_from_stdin;
|
int is_from_stdin;
|
||||||
double fixed_size;
|
double fixed_size;
|
||||||
@ -808,7 +809,6 @@ struct CdrtracK {
|
|||||||
/** fd[0] of the fifo pipe. This is from where libburn reads its data. */
|
/** fd[0] of the fifo pipe. This is from where libburn reads its data. */
|
||||||
int fifo_outlet_fd;
|
int fifo_outlet_fd;
|
||||||
int fifo_size;
|
int fifo_size;
|
||||||
int fifo_start_at;
|
|
||||||
|
|
||||||
/** The possibly external fifo object which knows the real input fd and
|
/** The possibly external fifo object which knows the real input fd and
|
||||||
the fd[1] of the pipe. */
|
the fd[1] of the pipe. */
|
||||||
@ -829,14 +829,13 @@ int Cdrtrack_set_track_type(struct CdrtracK *o, int track_type, int flag);
|
|||||||
@param boss The cdrskin control object (corresponds to session)
|
@param boss The cdrskin control object (corresponds to session)
|
||||||
@param trackno The index in the cdrskin tracklist array (is not constant)
|
@param trackno The index in the cdrskin tracklist array (is not constant)
|
||||||
@param flag Bitfield for control purposes:
|
@param flag Bitfield for control purposes:
|
||||||
bit0= set fifo_start_at to 0
|
|
||||||
bit1= track is originally stdin
|
bit1= track is originally stdin
|
||||||
*/
|
*/
|
||||||
int Cdrtrack_new(struct CdrtracK **track, struct CdrskiN *boss,
|
int Cdrtrack_new(struct CdrtracK **track, struct CdrskiN *boss,
|
||||||
int trackno, int flag)
|
int trackno, int flag)
|
||||||
{
|
{
|
||||||
struct CdrtracK *o;
|
struct CdrtracK *o;
|
||||||
int ret,skin_track_type;
|
int ret,skin_track_type,fifo_start_at;
|
||||||
int Cdrskin_get_source(struct CdrskiN *skin, char *source_path,
|
int Cdrskin_get_source(struct CdrskiN *skin, char *source_path,
|
||||||
double *fixed_size, double *tao_to_sao_tsize,
|
double *fixed_size, double *tao_to_sao_tsize,
|
||||||
int *use_data_image_size,
|
int *use_data_image_size,
|
||||||
@ -852,6 +851,7 @@ int Cdrtrack_new(struct CdrtracK **track, struct CdrskiN *boss,
|
|||||||
o->boss= boss;
|
o->boss= boss;
|
||||||
o->trackno= trackno;
|
o->trackno= trackno;
|
||||||
o->source_path[0]= 0;
|
o->source_path[0]= 0;
|
||||||
|
o->original_source_path[0]= 0;
|
||||||
o->source_fd= -1;
|
o->source_fd= -1;
|
||||||
o->is_from_stdin= !!(flag&2);
|
o->is_from_stdin= !!(flag&2);
|
||||||
o->fixed_size= 0.0;
|
o->fixed_size= 0.0;
|
||||||
@ -870,7 +870,6 @@ int Cdrtrack_new(struct CdrtracK **track, struct CdrskiN *boss,
|
|||||||
o->fifo= NULL;
|
o->fifo= NULL;
|
||||||
o->fifo_outlet_fd= -1;
|
o->fifo_outlet_fd= -1;
|
||||||
o->fifo_size= 0;
|
o->fifo_size= 0;
|
||||||
o->fifo_start_at= -1;
|
|
||||||
o->ff_fifo= NULL;
|
o->ff_fifo= NULL;
|
||||||
o->ff_idx= -1;
|
o->ff_idx= -1;
|
||||||
o->libburn_track= NULL;
|
o->libburn_track= NULL;
|
||||||
@ -882,17 +881,16 @@ int Cdrtrack_new(struct CdrtracK **track, struct CdrskiN *boss,
|
|||||||
0);
|
0);
|
||||||
if(ret<=0)
|
if(ret<=0)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
strcpy(o->original_source_path,o->source_path);
|
||||||
Cdrtrack_set_track_type(o,skin_track_type,0);
|
Cdrtrack_set_track_type(o,skin_track_type,0);
|
||||||
|
|
||||||
#ifndef Cdrskin_extra_leaN
|
#ifndef Cdrskin_extra_leaN
|
||||||
ret= Cdrskin_get_fifo_par(boss, &(o->fifo_enabled),&(o->fifo_size),
|
ret= Cdrskin_get_fifo_par(boss, &(o->fifo_enabled),&(o->fifo_size),
|
||||||
&(o->fifo_start_at),0);
|
&fifo_start_at,0);
|
||||||
if(ret<=0)
|
if(ret<=0)
|
||||||
goto failed;
|
goto failed;
|
||||||
#endif /* ! Cdrskin_extra_leaN */
|
#endif /* ! Cdrskin_extra_leaN */
|
||||||
|
|
||||||
if(flag&1)
|
|
||||||
o->fifo_start_at= 0;
|
|
||||||
return(1);
|
return(1);
|
||||||
failed:;
|
failed:;
|
||||||
Cdrtrack_destroy(track,0);
|
Cdrtrack_destroy(track,0);
|
||||||
@ -974,6 +972,16 @@ int Cdrtrack_get_size(struct CdrtracK *track, double *size, double *padding,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int Cdrtrack_get_source_path(struct CdrtracK *track,
|
||||||
|
char **source_path, int *source_fd, int *is_from_stdin, int flag)
|
||||||
|
{
|
||||||
|
*source_path= track->original_source_path;
|
||||||
|
*source_fd= track->source_fd;
|
||||||
|
*is_from_stdin= track->is_from_stdin;
|
||||||
|
return(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int Cdrtrack_get_fifo(struct CdrtracK *track, struct CdrfifO **fifo, int flag)
|
int Cdrtrack_get_fifo(struct CdrtracK *track, struct CdrfifO **fifo, int flag)
|
||||||
{
|
{
|
||||||
*fifo= track->fifo;
|
*fifo= track->fifo;
|
||||||
@ -1284,20 +1292,20 @@ int Cdrtrack_attach_fifo(struct CdrtracK *track, int *outlet_fd,
|
|||||||
exhausted.
|
exhausted.
|
||||||
@return <=0 error, 1 success
|
@return <=0 error, 1 success
|
||||||
*/
|
*/
|
||||||
int Cdrtrack_fill_fifo(struct CdrtracK *track, int flag)
|
int Cdrtrack_fill_fifo(struct CdrtracK *track, int fifo_start_at, int flag)
|
||||||
{
|
{
|
||||||
int ret,buffer_fill,buffer_space;
|
int ret,buffer_fill,buffer_space;
|
||||||
double data_image_size;
|
double data_image_size;
|
||||||
|
|
||||||
if(track->fifo==NULL || track->fifo_start_at==0)
|
if(track->fifo==NULL || fifo_start_at==0)
|
||||||
return(2);
|
return(2);
|
||||||
if(track->fifo_start_at>0 && track->fifo_start_at<track->fifo_size)
|
if(fifo_start_at>0 && fifo_start_at<track->fifo_size)
|
||||||
printf(
|
printf(
|
||||||
"cdrskin: NOTE : Input buffer will be initially filled up to %d bytes\n",
|
"cdrskin: NOTE : Input buffer will be initially filled up to %d bytes\n",
|
||||||
track->fifo_start_at);
|
fifo_start_at);
|
||||||
printf("Waiting for reader process to fill input buffer ... ");
|
printf("Waiting for reader process to fill input buffer ... ");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
ret= Cdrfifo_fill(track->fifo,track->fifo_start_at,0);
|
ret= Cdrfifo_fill(track->fifo,fifo_start_at,0);
|
||||||
if(ret<=0)
|
if(ret<=0)
|
||||||
return(ret);
|
return(ret);
|
||||||
|
|
||||||
@ -2291,6 +2299,8 @@ see_cdrskin_eng_html:;
|
|||||||
fprintf(stderr,"\t-audio\t\tSubsequent tracks are CD-DA audio tracks\n");
|
fprintf(stderr,"\t-audio\t\tSubsequent tracks are CD-DA audio tracks\n");
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"\t-data\t\tSubsequent tracks are CD-ROM data mode 1 (default)\n");
|
"\t-data\t\tSubsequent tracks are CD-ROM data mode 1 (default)\n");
|
||||||
|
fprintf(stderr,
|
||||||
|
"\t-isosize\tUse iso9660 file system size for next data track\n");
|
||||||
fprintf(stderr,"\t-pad\t\tpadsize=30k\n");
|
fprintf(stderr,"\t-pad\t\tpadsize=30k\n");
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"\t-nopad\t\tDo not pad (default, but applies only to data tracks)\n");
|
"\t-nopad\t\tDo not pad (default, but applies only to data tracks)\n");
|
||||||
@ -2891,7 +2901,7 @@ int Cdrskin_fill_fifo(struct CdrskiN *skin, int flag)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret= Cdrtrack_fill_fifo(skin->tracklist[0],0);
|
ret= Cdrtrack_fill_fifo(skin->tracklist[0],skin->fifo_start_at,0);
|
||||||
if(ret<=0)
|
if(ret<=0)
|
||||||
return(ret);
|
return(ret);
|
||||||
printf("input buffer ready.\n");
|
printf("input buffer ready.\n");
|
||||||
@ -4987,6 +4997,8 @@ int Cdrskin_burn(struct CdrskiN *skin, int flag)
|
|||||||
double start_time,last_time;
|
double start_time,last_time;
|
||||||
double total_count= 0.0,last_count= 0.0,size,padding,sector_size= 2048.0;
|
double total_count= 0.0,last_count= 0.0,size,padding,sector_size= 2048.0;
|
||||||
char *doing;
|
char *doing;
|
||||||
|
char *source_path;
|
||||||
|
int source_fd, is_from_stdin;
|
||||||
|
|
||||||
if(skin->tell_media_space)
|
if(skin->tell_media_space)
|
||||||
doing= "estimating";
|
doing= "estimating";
|
||||||
@ -5053,14 +5065,13 @@ burn_failed:;
|
|||||||
}
|
}
|
||||||
Cdrtrack_get_size(skin->tracklist[i],&size,&padding,§or_size,
|
Cdrtrack_get_size(skin->tracklist[i],&size,&padding,§or_size,
|
||||||
&use_data_image_size,0);
|
&use_data_image_size,0);
|
||||||
if(use_data_image_size==1)
|
if(use_data_image_size==1) { /* still unfulfilled -isosize demand pending */
|
||||||
needs_early_fifo_fill= 1;
|
needs_early_fifo_fill= 1;
|
||||||
else if(size>0)
|
} else if(size>0)
|
||||||
skin->fixed_size+= size+padding;
|
skin->fixed_size+= size+padding;
|
||||||
else {
|
else
|
||||||
skin->has_open_ended_track= 1;
|
skin->has_open_ended_track= 1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#ifndef Cdrskin_libburn_write_mode_ruleS
|
#ifndef Cdrskin_libburn_write_mode_ruleS
|
||||||
if (s==BURN_DISC_APPENDABLE) {
|
if (s==BURN_DISC_APPENDABLE) {
|
||||||
@ -5080,9 +5091,21 @@ burn_failed:;
|
|||||||
determination via fifo content.
|
determination via fifo content.
|
||||||
*/
|
*/
|
||||||
if(needs_early_fifo_fill && !skin->tell_media_space) {
|
if(needs_early_fifo_fill && !skin->tell_media_space) {
|
||||||
|
int start_memorized;
|
||||||
|
|
||||||
|
start_memorized= skin->fifo_start_at;
|
||||||
|
/* try ISO-9660 size recognition via fifo */
|
||||||
|
if(32*2048<=skin->fifo_size)
|
||||||
|
skin->fifo_start_at= 32*2048;
|
||||||
|
else
|
||||||
|
skin->fifo_start_at= skin->fifo_size;
|
||||||
ret= Cdrskin_fill_fifo(skin,0);
|
ret= Cdrskin_fill_fifo(skin,0);
|
||||||
if(ret<=0)
|
if(ret<=0)
|
||||||
goto fifo_filling_failed;
|
goto fifo_filling_failed;
|
||||||
|
if((start_memorized>skin->fifo_start_at || start_memorized<=0) &&
|
||||||
|
skin->fifo_start_at<skin->fifo_size)
|
||||||
|
needs_early_fifo_fill= 2; /* continue filling fifo at normal stage */
|
||||||
|
skin->fifo_start_at= start_memorized;
|
||||||
}
|
}
|
||||||
skin->fixed_size= 0.0;
|
skin->fixed_size= 0.0;
|
||||||
skin->has_open_ended_track= 0;
|
skin->has_open_ended_track= 0;
|
||||||
@ -5094,8 +5117,12 @@ burn_failed:;
|
|||||||
ret= Cdrtrack_activate_image_size(skin->tracklist[i],&size,
|
ret= Cdrtrack_activate_image_size(skin->tracklist[i],&size,
|
||||||
!!skin->tell_media_space);
|
!!skin->tell_media_space);
|
||||||
if(ret<=0) {
|
if(ret<=0) {
|
||||||
|
Cdrtrack_get_source_path(skin->tracklist[i],
|
||||||
|
&source_path,&source_fd,&is_from_stdin,0);
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"cdrskin: FATAL : cannot determine -isosize of track source\n");
|
"cdrskin: FATAL : cannot determine -isosize of track source\n");
|
||||||
|
fprintf(stderr,
|
||||||
|
"cdrskin: '%s'\n", source_path);
|
||||||
{ret= 0; goto ex;}
|
{ret= 0; goto ex;}
|
||||||
}
|
}
|
||||||
Cdrtrack_get_size(skin->tracklist[i],&size,&padding,§or_size,
|
Cdrtrack_get_size(skin->tracklist[i],&size,&padding,§or_size,
|
||||||
@ -5184,7 +5211,7 @@ burn_failed:;
|
|||||||
|
|
||||||
#ifndef Cdrskin_extra_leaN
|
#ifndef Cdrskin_extra_leaN
|
||||||
Cdrskin_wait_before_action(skin,0);
|
Cdrskin_wait_before_action(skin,0);
|
||||||
if(needs_early_fifo_fill)
|
if(needs_early_fifo_fill==1)
|
||||||
ret= 1;
|
ret= 1;
|
||||||
else
|
else
|
||||||
ret= Cdrskin_fill_fifo(skin,0);
|
ret= Cdrskin_fill_fifo(skin,0);
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Cdrskin_timestamP "2007.03.28.160503"
|
#define Cdrskin_timestamP "2007.03.28.182419"
|
||||||
|
Loading…
Reference in New Issue
Block a user