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
Thomas Daede
Vorbis tools
Commits
3cdb024c
Commit
3cdb024c
authored
Dec 21, 2001
by
Segher Boessenkool
Browse files
order of minimum/maximum bitrates was swapped.
svn path=/trunk/vorbis-tools/; revision=2878
parent
d30a56e7
Changes
1
Show whitespace changes
Inline
Side-by-side
oggenc/encode.c
View file @
3cdb024c
...
...
@@ -63,9 +63,9 @@ int oe_encode(oe_enc_opt *opt)
else
{
if
(
vorbis_encode_init
(
&
vi
,
opt
->
channels
,
opt
->
rate
,
opt
->
m
in
_bitrate
>
0
?
opt
->
m
in
_bitrate
*
1000
:-
1
,
opt
->
m
ax
_bitrate
>
0
?
opt
->
m
ax
_bitrate
*
1000
:-
1
,
opt
->
bitrate
*
1000
,
opt
->
m
ax
_bitrate
>
0
?
opt
->
m
ax
_bitrate
*
1000
:-
1
))
opt
->
m
in
_bitrate
>
0
?
opt
->
m
in
_bitrate
*
1000
:-
1
))
{
fprintf
(
stderr
,
"Mode initialisation failed: invalid parameters for bitrate
\n
"
);
vorbis_info_clear
(
&
vi
);
...
...
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