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
598f8a7a
Commit
598f8a7a
authored
Aug 26, 2015
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/vf_idet: reindent after last commit.
parent
7635242a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
13 deletions
+11
-13
vf_idet.c
libavfilter/vf_idet.c
+11
-13
No files found.
libavfilter/vf_idet.c
View file @
598f8a7a
...
@@ -313,24 +313,22 @@ static int request_frame(AVFilterLink *link)
...
@@ -313,24 +313,22 @@ static int request_frame(AVFilterLink *link)
{
{
AVFilterContext
*
ctx
=
link
->
src
;
AVFilterContext
*
ctx
=
link
->
src
;
IDETContext
*
idet
=
ctx
->
priv
;
IDETContext
*
idet
=
ctx
->
priv
;
int
ret
;
// TODO reindent
if
(
idet
->
eof
)
int
ret
;
return
AVERROR_EOF
;
if
(
idet
->
eof
)
ret
=
ff_request_frame
(
link
->
src
->
inputs
[
0
]);
return
AVERROR_EOF
;
ret
=
ff_request_frame
(
link
->
src
->
inputs
[
0
]);
if
(
ret
==
AVERROR_EOF
&&
idet
->
cur
&&
!
idet
->
analyze_interlaced_flag_done
)
{
AVFrame
*
next
=
av_frame_clone
(
idet
->
next
);
if
(
ret
==
AVERROR_EOF
&&
idet
->
cur
&&
!
idet
->
analyze_interlaced_flag_done
)
{
if
(
!
next
)
AVFrame
*
next
=
av_frame_clone
(
idet
->
next
);
return
AVERROR
(
ENOMEM
);
if
(
!
next
)
ret
=
filter_frame
(
link
->
src
->
inputs
[
0
],
next
);
return
AVERROR
(
ENOMEM
);
idet
->
eof
=
1
;
}
ret
=
filter_frame
(
link
->
src
->
inputs
[
0
],
next
);
idet
->
eof
=
1
;
}
return
ret
;
return
ret
;
}
}
...
...
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