Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
63f7bee7
Commit
63f7bee7
authored
Nov 29, 2015
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/vf_mpdecimate: remove request_frame().
It is no longer needed since looping is not necessary.
parent
05af8608
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
14 deletions
+0
-14
vf_mpdecimate.c
libavfilter/vf_mpdecimate.c
+0
-14
No files found.
libavfilter/vf_mpdecimate.c
View file @
63f7bee7
...
@@ -224,19 +224,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *cur)
...
@@ -224,19 +224,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *cur)
return
0
;
return
0
;
}
}
static
int
request_frame
(
AVFilterLink
*
outlink
)
{
DecimateContext
*
decimate
=
outlink
->
src
->
priv
;
AVFilterLink
*
inlink
=
outlink
->
src
->
inputs
[
0
];
int
ret
;
do
{
ret
=
ff_request_frame
(
inlink
);
}
while
(
decimate
->
drop_count
>
0
&&
ret
>=
0
);
return
ret
;
}
static
const
AVFilterPad
mpdecimate_inputs
[]
=
{
static
const
AVFilterPad
mpdecimate_inputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
...
@@ -251,7 +238,6 @@ static const AVFilterPad mpdecimate_outputs[] = {
...
@@ -251,7 +238,6 @@ static const AVFilterPad mpdecimate_outputs[] = {
{
{
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
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