change default seektable from "-S 100x" to "-S 10s"

This commit is contained in:
Josh Coalson
2002-12-31 00:08:31 +00:00
parent 48cbe66f06
commit a86b5ef934
4 changed files with 5 additions and 5 deletions

View File

@@ -528,7 +528,7 @@
</LI>
</UL>
You may use many -S options; the resulting SEEKTABLE will be the unique-ified union of all such values.<BR>
With no -S options, flac defaults to '-S 100x'. Use --no-seektable for no SEEKTABLE.<BR>
With no -S options, flac defaults to '-S 10s'. Use --no-seektable for no SEEKTABLE.<BR>
<B>NOTE:</B> -S #x and -S #s will not work if the encoder can't determine the input size before starting.<BR>
<B>NOTE:</B> if you use -S # and # is &gt;= samples in the input, there will be either no seek point entered (if the input size is determinable before encoding starts) or a placeholder point (if input size is not determinable).<BR>
</TD>

View File

@@ -4,7 +4,7 @@
<!ENTITY dhfirstname "<firstname>Matt</firstname>">
<!ENTITY dhsurname "<surname>Zimmerman</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>December 18, 2002</date>">
<!ENTITY dhdate "<date>December 30, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
@@ -359,7 +359,7 @@
meaning a seekpoint every 9.5 seconds). You may use
many -S options; the resulting SEEKTABLE will be the
unique-ified union of all such values. With no -S
options, flac defaults to '-S 100x'. Use --no-seektable
options, flac defaults to '-S 10s'. Use --no-seektable
for no SEEKTABLE. Note: '-S #x' and '-S #s' will not
work if the encoder can't determine the input size before
starting. Note: if you use '-S #' and # is >=

View File

@@ -1556,7 +1556,7 @@ FLAC__bool convert_to_seek_table_template(const char *requested_seek_points, int
return true;
if(num_requested_seek_points < 0) {
requested_seek_points = "100x;";
requested_seek_points = "10s;";
num_requested_seek_points = 1;
}

View File

@@ -1305,7 +1305,7 @@ void show_explain()
printf(" #s : a seekpoint every # seconds; # does not have to be a whole number\n");
printf(" You may use many -S options; the resulting SEEKTABLE will be the unique-\n");
printf(" ified union of all such values.\n");
printf(" With no -S options, flac defaults to '-S 100x'. Use -S- for no SEEKTABLE.\n");
printf(" With no -S options, flac defaults to '-S 10s'. Use -S- for no SEEKTABLE.\n");
printf(" Note: -S #x and -S #s will not work if the encoder can't determine the\n");
printf(" input size before starting.\n");
printf(" Note: if you use -S # and # is >= samples in the input, there will be\n");