Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
3f9ffd1c
Commit
3f9ffd1c
authored
Apr 25, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/vorbis.c: fix for quality setting.
parent
168380fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/codec/vorbis.c
modules/codec/vorbis.c
+5
-1
No files found.
modules/codec/vorbis.c
View file @
3f9ffd1c
...
...
@@ -168,9 +168,11 @@ vlc_module_begin();
vlc_module_end
();
#ifndef MODULE_NAME_IS_tremor
static
const
char
*
ppsz_enc_options
[]
=
{
"quality"
,
"max-bitrate"
,
"min-bitrate"
,
NULL
};
#endif
/*****************************************************************************
* OpenDecoder: probe the decoder and return score
...
...
@@ -609,6 +611,8 @@ static int OpenEncoder( vlc_object_t *p_this )
var_Get
(
p_enc
,
ENC_CFG_PREFIX
"quality"
,
&
val
);
i_quality
=
val
.
i_int
;
if
(
i_quality
>
10
)
i_quality
=
10
;
if
(
i_quality
<
0
)
i_quality
=
0
;
var_Get
(
p_enc
,
ENC_CFG_PREFIX
"max-bitrate"
,
&
val
);
i_max_bitrate
=
val
.
i_int
;
var_Get
(
p_enc
,
ENC_CFG_PREFIX
"min-bitrate"
,
&
val
);
...
...
@@ -622,7 +626,7 @@ static int OpenEncoder( vlc_object_t *p_this )
/* VBR mode */
if
(
vorbis_encode_setup_vbr
(
&
p_sys
->
vi
,
p_enc
->
fmt_in
.
audio
.
i_channels
,
p_enc
->
fmt_in
.
audio
.
i_rate
,
i_quality
)
)
i_quality
*
0
.
1
)
)
{
vorbis_info_clear
(
&
p_sys
->
vi
);
free
(
p_enc
->
p_sys
);
...
...
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