Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
382b2f8f
Commit
382b2f8f
authored
Aug 16, 2002
by
Josh Coalson
Browse files
move on to the next file instead of stopping on errors
parent
a1283a27
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/flac/main.c
View file @
382b2f8f
...
...
@@ -381,10 +381,10 @@ int do_it()
unsigned
i
;
if
(
option_values
.
num_files
>
1
)
option_values
.
cmdline_forced_outfilename
=
0
;
for
(
i
=
0
,
retval
=
0
;
i
<
option_values
.
num_files
&&
retval
==
0
;
i
++
)
{
for
(
i
=
0
,
retval
=
0
;
i
<
option_values
.
num_files
;
i
++
)
{
if
(
0
==
strcmp
(
option_values
.
filenames
[
i
],
"-"
)
&&
!
first
)
continue
;
retval
=
decode_file
(
option_values
.
filenames
[
i
],
0
);
retval
|
=
decode_file
(
option_values
.
filenames
[
i
],
0
);
first
=
false
;
}
}
...
...
@@ -399,10 +399,10 @@ int do_it()
unsigned
i
;
if
(
option_values
.
num_files
>
1
)
option_values
.
cmdline_forced_outfilename
=
0
;
for
(
i
=
0
,
retval
=
0
;
i
<
option_values
.
num_files
&&
retval
==
0
;
i
++
)
{
for
(
i
=
0
,
retval
=
0
;
i
<
option_values
.
num_files
;
i
++
)
{
if
(
0
==
strcmp
(
option_values
.
filenames
[
i
],
"-"
)
&&
!
first
)
continue
;
retval
=
encode_file
(
option_values
.
filenames
[
i
],
0
,
i
==
(
option_values
.
num_files
-
1
));
retval
|
=
encode_file
(
option_values
.
filenames
[
i
],
0
,
i
==
(
option_values
.
num_files
-
1
));
first
=
false
;
}
}
...
...
@@ -1092,7 +1092,6 @@ void show_explain()
printf
(
" -p, --qlp-coeff-precision-search Do exhaustive search of LP coefficient
\n
"
);
printf
(
" quantization (expensive!); overrides -q;
\n
"
);
printf
(
" does nothing if using -l 0
\n
"
);
/*@@@@@@ ................................................................................*/
printf
(
" -q, --qlp-coeff-precision=# Specify precision in bits of quantized
\n
"
);
printf
(
" linear-predictor coefficients; 0 => let
\n
"
);
printf
(
" encoder decide (the minimun is %u, the
\n
"
,
FLAC__MIN_QLP_COEFF_PRECISION
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment