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
f61369d7
Commit
f61369d7
authored
Dec 01, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/vsrc: switch to ff_filter_frame.
parent
6d2892c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
15 deletions
+3
-15
vsrc_cellauto.c
libavfilter/vsrc_cellauto.c
+1
-5
vsrc_life.c
libavfilter/vsrc_life.c
+1
-5
vsrc_mptestsrc.c
libavfilter/vsrc_mptestsrc.c
+1
-5
No files found.
libavfilter/vsrc_cellauto.c
View file @
f61369d7
...
...
@@ -319,11 +319,7 @@ static int request_frame(AVFilterLink *outlink)
#ifdef DEBUG
show_cellauto_row
(
outlink
->
src
);
#endif
ff_start_frame
(
outlink
,
avfilter_ref_buffer
(
picref
,
~
0
));
ff_draw_slice
(
outlink
,
0
,
cellauto
->
h
,
1
);
ff_end_frame
(
outlink
);
avfilter_unref_buffer
(
picref
);
ff_filter_frame
(
outlink
,
picref
);
return
0
;
}
...
...
libavfilter/vsrc_life.c
View file @
f61369d7
...
...
@@ -439,11 +439,7 @@ static int request_frame(AVFilterLink *outlink)
#ifdef DEBUG
show_life_grid
(
outlink
->
src
);
#endif
ff_start_frame
(
outlink
,
avfilter_ref_buffer
(
picref
,
~
0
));
ff_draw_slice
(
outlink
,
0
,
life
->
h
,
1
);
ff_end_frame
(
outlink
);
avfilter_unref_buffer
(
picref
);
ff_filter_frame
(
outlink
,
picref
);
return
0
;
}
...
...
libavfilter/vsrc_mptestsrc.c
View file @
f61369d7
...
...
@@ -355,11 +355,7 @@ static int request_frame(AVFilterLink *outlink)
}
test
->
frame_nb
++
;
ff_start_frame
(
outlink
,
avfilter_ref_buffer
(
picref
,
~
0
));
ff_draw_slice
(
outlink
,
0
,
picref
->
video
->
h
,
1
);
ff_end_frame
(
outlink
);
avfilter_unref_buffer
(
picref
);
ff_filter_frame
(
outlink
,
picref
);
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