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
b8a9876a
Commit
b8a9876a
authored
May 21, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/yadif: add timeline support.
parent
b1bbd715
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
version.h
libavfilter/version.h
+1
-1
vf_yadif.c
libavfilter/vf_yadif.c
+2
-1
No files found.
libavfilter/version.h
View file @
b8a9876a
...
...
@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 3
#define LIBAVFILTER_VERSION_MINOR 68
#define LIBAVFILTER_VERSION_MICRO 10
1
#define LIBAVFILTER_VERSION_MICRO 10
2
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
libavfilter/vf_yadif.c
View file @
b8a9876a
...
...
@@ -280,7 +280,7 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
if
(
!
yadif
->
cur
)
return
0
;
if
(
yadif
->
deint
&&
!
yadif
->
cur
->
interlaced_frame
)
{
if
(
(
yadif
->
deint
&&
!
yadif
->
cur
->
interlaced_frame
)
||
ctx
->
is_disabled
)
{
yadif
->
out
=
av_frame_clone
(
yadif
->
cur
);
if
(
!
yadif
->
out
)
return
AVERROR
(
ENOMEM
);
...
...
@@ -484,4 +484,5 @@ AVFilter avfilter_vf_yadif = {
.
inputs
=
avfilter_vf_yadif_inputs
,
.
outputs
=
avfilter_vf_yadif_outputs
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
,
};
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