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
b420b878
Commit
b420b878
authored
Sep 04, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/tinterlace: remove poll_frame() callback
That interface is deprecated, and apparently useless.
parent
7adc6002
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
vf_tinterlace.c
libavfilter/vf_tinterlace.c
+0
-19
No files found.
libavfilter/vf_tinterlace.c
View file @
b420b878
...
...
@@ -330,24 +330,6 @@ static int end_frame(AVFilterLink *inlink)
return
0
;
}
static
int
poll_frame
(
AVFilterLink
*
outlink
)
{
TInterlaceContext
*
tinterlace
=
outlink
->
src
->
priv
;
AVFilterLink
*
inlink
=
outlink
->
src
->
inputs
[
0
];
int
ret
,
val
;
val
=
ff_poll_frame
(
inlink
);
if
(
val
==
1
&&
!
tinterlace
->
next
)
{
if
((
ret
=
ff_request_frame
(
inlink
))
<
0
)
return
ret
;
val
=
ff_poll_frame
(
inlink
);
}
av_assert0
(
tinterlace
->
next
);
return
val
;
}
static
int
request_frame
(
AVFilterLink
*
outlink
)
{
TInterlaceContext
*
tinterlace
=
outlink
->
src
->
priv
;
...
...
@@ -385,7 +367,6 @@ AVFilter avfilter_vf_tinterlace = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_out_props
,
.
poll_frame
=
poll_frame
,
.
request_frame
=
request_frame
},
{
.
name
=
NULL
}
},
...
...
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