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
963cd953
Commit
963cd953
authored
Mar 26, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: stop using deprecated codec flags
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
f5c8d004
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vf_mcdeint.c
libavfilter/vf_mcdeint.c
+1
-1
vf_uspp.c
libavfilter/vf_uspp.c
+1
-1
No files found.
libavfilter/vf_mcdeint.c
View file @
963cd953
...
@@ -122,7 +122,7 @@ static int config_props(AVFilterLink *inlink)
...
@@ -122,7 +122,7 @@ static int config_props(AVFilterLink *inlink)
enc_ctx
->
gop_size
=
INT_MAX
;
enc_ctx
->
gop_size
=
INT_MAX
;
enc_ctx
->
max_b_frames
=
0
;
enc_ctx
->
max_b_frames
=
0
;
enc_ctx
->
pix_fmt
=
AV_PIX_FMT_YUV420P
;
enc_ctx
->
pix_fmt
=
AV_PIX_FMT_YUV420P
;
enc_ctx
->
flags
=
AV_CODEC_FLAG_QSCALE
|
CODEC_FLAG_LOW_DELAY
;
enc_ctx
->
flags
=
AV_CODEC_FLAG_QSCALE
|
AV_
CODEC_FLAG_LOW_DELAY
;
enc_ctx
->
strict_std_compliance
=
FF_COMPLIANCE_EXPERIMENTAL
;
enc_ctx
->
strict_std_compliance
=
FF_COMPLIANCE_EXPERIMENTAL
;
enc_ctx
->
global_quality
=
1
;
enc_ctx
->
global_quality
=
1
;
enc_ctx
->
me_cmp
=
enc_ctx
->
me_sub_cmp
=
FF_CMP_SAD
;
enc_ctx
->
me_cmp
=
enc_ctx
->
me_sub_cmp
=
FF_CMP_SAD
;
...
...
libavfilter/vf_uspp.c
View file @
963cd953
...
@@ -357,7 +357,7 @@ static int config_input(AVFilterLink *inlink)
...
@@ -357,7 +357,7 @@ static int config_input(AVFilterLink *inlink)
avctx_enc
->
gop_size
=
INT_MAX
;
avctx_enc
->
gop_size
=
INT_MAX
;
avctx_enc
->
max_b_frames
=
0
;
avctx_enc
->
max_b_frames
=
0
;
avctx_enc
->
pix_fmt
=
inlink
->
format
;
avctx_enc
->
pix_fmt
=
inlink
->
format
;
avctx_enc
->
flags
=
AV_CODEC_FLAG_QSCALE
|
CODEC_FLAG_LOW_DELAY
;
avctx_enc
->
flags
=
AV_CODEC_FLAG_QSCALE
|
AV_
CODEC_FLAG_LOW_DELAY
;
avctx_enc
->
strict_std_compliance
=
FF_COMPLIANCE_EXPERIMENTAL
;
avctx_enc
->
strict_std_compliance
=
FF_COMPLIANCE_EXPERIMENTAL
;
avctx_enc
->
global_quality
=
123
;
avctx_enc
->
global_quality
=
123
;
av_dict_set
(
&
opts
,
"no_bitstream"
,
"1"
,
0
);
av_dict_set
(
&
opts
,
"no_bitstream"
,
"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