Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
1f7257eb
Commit
1f7257eb
authored
Nov 01, 2008
by
Vincent Penquerc'h
Committed by
Rémi Denis-Courmont
Nov 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build with (at least) libspeex 1.1.12
Signed-off-by:
Rémi Denis-Courmont
<
rdenis@simphalempin.com
>
parent
2bdbd381
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
modules/codec/speex.c
modules/codec/speex.c
+4
-0
No files found.
modules/codec/speex.c
View file @
1f7257eb
...
...
@@ -988,7 +988,11 @@ static int OpenEncoder( vlc_object_t *p_this )
i_tmp
=
var_GetInteger
(
p_enc
,
ENC_CFG_PREFIX
"max-bitrate"
);
if
(
i_tmp
>
0
)
#ifdef SPEEX_SET_VBR_MAX_BITRATE
speex_encoder_ctl
(
p_sys
->
p_state
,
SPEEX_SET_VBR_MAX_BITRATE
,
&
i_tmp
);
#else
msg_Dbg
(
p_enc
,
"max-bitrate cannot be set in this version of libspeex"
);
#endif
}
i_tmp
=
var_GetBool
(
p_enc
,
ENC_CFG_PREFIX
"dtx"
)
?
1
:
0
;
...
...
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