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
915d7487
Commit
915d7487
authored
Dec 26, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/idet: remove unecessary poll_frame callback.
parent
39d17880
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
vf_idet.c
libavfilter/vf_idet.c
+0
-18
No files found.
libavfilter/vf_idet.c
View file @
915d7487
...
@@ -207,23 +207,6 @@ static int request_frame(AVFilterLink *link)
...
@@ -207,23 +207,6 @@ static int request_frame(AVFilterLink *link)
return
0
;
return
0
;
}
}
static
int
poll_frame
(
AVFilterLink
*
link
)
{
IDETContext
*
idet
=
link
->
src
->
priv
;
int
ret
,
val
;
val
=
ff_poll_frame
(
link
->
src
->
inputs
[
0
]);
if
(
val
>=
1
&&
!
idet
->
next
)
{
//FIXME change API to not requre this red tape
if
((
ret
=
ff_request_frame
(
link
->
src
->
inputs
[
0
]))
<
0
)
return
ret
;
val
=
ff_poll_frame
(
link
->
src
->
inputs
[
0
]);
}
assert
(
idet
->
next
||
!
val
);
return
val
;
}
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
{
IDETContext
*
idet
=
ctx
->
priv
;
IDETContext
*
idet
=
ctx
->
priv
;
...
@@ -311,7 +294,6 @@ static const AVFilterPad idet_outputs[] = {
...
@@ -311,7 +294,6 @@ static const AVFilterPad idet_outputs[] = {
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
rej_perms
=
AV_PERM_WRITE
,
.
rej_perms
=
AV_PERM_WRITE
,
.
poll_frame
=
poll_frame
,
.
request_frame
=
request_frame
,
.
request_frame
=
request_frame
,
},
},
{
NULL
}
{
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