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
e7279638
Commit
e7279638
authored
Mar 13, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/thumbnail: remove unecessary poll_frame() callback.
parent
bce2e97a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
vf_thumbnail.c
libavfilter/vf_thumbnail.c
+0
-23
No files found.
libavfilter/vf_thumbnail.c
View file @
e7279638
...
@@ -170,28 +170,6 @@ static int request_frame(AVFilterLink *link)
...
@@ -170,28 +170,6 @@ static int request_frame(AVFilterLink *link)
return
0
;
return
0
;
}
}
static
int
poll_frame
(
AVFilterLink
*
link
)
{
ThumbContext
*
thumb
=
link
->
src
->
priv
;
AVFilterLink
*
inlink
=
link
->
src
->
inputs
[
0
];
int
ret
,
available_frames
=
ff_poll_frame
(
inlink
);
/* If the input link is not able to provide any frame, we can't do anything
* at the moment and thus have zero thumbnail available. */
if
(
!
available_frames
)
return
0
;
/* Since at least one frame is available and the next frame will allow us
* to compute a thumbnail, we can return 1 frame. */
if
(
thumb
->
n
==
thumb
->
n_frames
-
1
)
return
1
;
/* we have some frame(s) available in the input link, but not yet enough to
* output a thumbnail, so we request more */
ret
=
ff_request_frame
(
inlink
);
return
ret
<
0
?
ret
:
0
;
}
static
int
query_formats
(
AVFilterContext
*
ctx
)
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
...
@@ -217,7 +195,6 @@ static const AVFilterPad thumbnail_outputs[] = {
...
@@ -217,7 +195,6 @@ static const AVFilterPad thumbnail_outputs[] = {
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
request_frame
=
request_frame
,
.
request_frame
=
request_frame
,
.
poll_frame
=
poll_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