Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
5ab51f75
Commit
5ab51f75
authored
Jun 21, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/libtwolame: fix encoding lsf with defaults
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a2de7b1b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
libtwolame.c
libavcodec/libtwolame.c
+5
-1
No files found.
libavcodec/libtwolame.c
View file @
5ab51f75
...
...
@@ -77,6 +77,10 @@ static av_cold int twolame_encode_init(AVCodecContext *avctx)
twolame_set_num_channels
(
s
->
glopts
,
avctx
->
channels
);
twolame_set_in_samplerate
(
s
->
glopts
,
avctx
->
sample_rate
);
twolame_set_out_samplerate
(
s
->
glopts
,
avctx
->
sample_rate
);
if
(
!
avctx
->
bit_rate
)
avctx
->
bit_rate
=
avctx
->
sample_rate
<
28000
?
160000
:
384000
;
if
(
avctx
->
flags
&
CODEC_FLAG_QSCALE
||
!
avctx
->
bit_rate
)
{
twolame_set_VBR
(
s
->
glopts
,
TRUE
);
twolame_set_VBR_level
(
s
->
glopts
,
...
...
@@ -190,7 +194,7 @@ static const AVClass twolame_class = {
};
static
const
AVCodecDefault
twolame_defaults
[]
=
{
{
"b"
,
"
38400
0"
},
{
"b"
,
"0"
},
{
NULL
},
};
...
...
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