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
e89f5881
Commit
e89f5881
authored
Sep 28, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libx264: remove check_default_settings()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f9d8a342
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
libx264.c
libavcodec/libx264.c
+0
-25
No files found.
libavcodec/libx264.c
View file @
e89f5881
...
...
@@ -209,31 +209,6 @@ static av_cold int X264_close(AVCodecContext *avctx)
return
0
;
}
/**
* Detect default settings and use default profile to avoid libx264 failure.
*/
static
void
check_default_settings
(
AVCodecContext
*
avctx
)
{
X264Context
*
x4
=
avctx
->
priv_data
;
int
score
=
0
;
score
+=
x4
->
params
.
analyse
.
i_me_range
==
0
;
score
+=
x4
->
params
.
rc
.
i_qp_step
==
3
;
score
+=
x4
->
params
.
i_keyint_max
==
12
;
score
+=
x4
->
params
.
rc
.
i_qp_min
==
2
;
score
+=
x4
->
params
.
rc
.
i_qp_max
==
31
;
score
+=
x4
->
params
.
rc
.
f_qcompress
==
0
.
5
;
score
+=
fabs
(
x4
->
params
.
rc
.
f_ip_factor
-
1
.
25
)
<
0
.
01
;
score
+=
fabs
(
x4
->
params
.
rc
.
f_pb_factor
-
1
.
25
)
<
0
.
01
;
score
+=
x4
->
params
.
analyse
.
inter
==
0
&&
x4
->
params
.
analyse
.
i_subpel_refine
==
8
;
if
(
score
>=
5
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Default settings detected, using medium profile
\n
"
);
x4
->
preset
=
av_strdup
(
"medium"
);
if
(
avctx
->
bit_rate
==
200
*
1000
)
avctx
->
crf
=
23
;
}
}
#define OPT_STR(opt, param) \
do { \
int ret; \
...
...
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