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
d3a3ee9c
Commit
d3a3ee9c
authored
Oct 21, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffserver: remove usage of deprecated rc_eq option
The private codec option will be used instead when available.
parent
efb79cab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
ffserver_config.c
fftools/ffserver_config.c
+1
-3
No files found.
fftools/ffserver_config.c
View file @
d3a3ee9c
...
...
@@ -291,11 +291,9 @@ static void add_codec(FFServerStream *stream, AVCodecContext *av,
}
if
(
!
av_dict_get
(
recommended
,
"rc_eq"
,
NULL
,
0
))
{
av
->
rc_eq
=
av_strdup
(
"tex^qComp"
);
av_dict_set
(
&
recommended
,
"rc_eq"
,
"tex^qComp"
,
0
);
WARNING
(
"Setting default value for video rate control equation = "
"%s. Use NoDefaults to disable it.
\n
"
,
av
->
rc_eq
);
"tex^qComp. Use NoDefaults to disable it.
\n
"
);
}
if
(
!
av_dict_get
(
recommended
,
"maxrate"
,
NULL
,
0
))
{
av
->
rc_max_rate
=
av
->
bit_rate
*
2
;
...
...
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