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
90d08724
Commit
90d08724
authored
Oct 02, 2015
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/vf_w3fdif: reindent after last commit.
parent
d7849248
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
16 deletions
+14
-16
vf_w3fdif.c
libavfilter/vf_w3fdif.c
+14
-16
No files found.
libavfilter/vf_w3fdif.c
View file @
90d08724
...
@@ -353,25 +353,23 @@ static int request_frame(AVFilterLink *outlink)
...
@@ -353,25 +353,23 @@ static int request_frame(AVFilterLink *outlink)
{
{
AVFilterContext
*
ctx
=
outlink
->
src
;
AVFilterContext
*
ctx
=
outlink
->
src
;
W3FDIFContext
*
s
=
ctx
->
priv
;
W3FDIFContext
*
s
=
ctx
->
priv
;
int
ret
;
/* TODO reindent */
if
(
s
->
eof
)
int
ret
;
return
AVERROR_EOF
;
if
(
s
->
eof
)
return
AVERROR_EOF
;
ret
=
ff_request_frame
(
ctx
->
inputs
[
0
]);
ret
=
ff_request_frame
(
ctx
->
inputs
[
0
]);
if
(
ret
==
AVERROR_EOF
&&
s
->
cur
)
{
if
(
ret
==
AVERROR_EOF
&&
s
->
cur
)
{
AVFrame
*
next
=
av_frame_clone
(
s
->
next
);
AVFrame
*
next
=
av_frame_clone
(
s
->
next
);
if
(
!
next
)
if
(
!
next
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
next
->
pts
=
s
->
next
->
pts
*
2
-
s
->
cur
->
pts
;
next
->
pts
=
s
->
next
->
pts
*
2
-
s
->
cur
->
pts
;
filter_frame
(
ctx
->
inputs
[
0
],
next
);
filter_frame
(
ctx
->
inputs
[
0
],
next
);
s
->
eof
=
1
;
s
->
eof
=
1
;
}
else
if
(
ret
<
0
)
{
}
else
if
(
ret
<
0
)
{
return
ret
;
return
ret
;
}
}
return
0
;
return
0
;
}
}
...
...
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