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
2468827c
Commit
2468827c
authored
Jan 05, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
internal.h: remove start/end_frame from AVFilterPad
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7e5d4fa9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
internal.h
libavfilter/internal.h
+0
-23
No files found.
libavfilter/internal.h
View file @
2468827c
...
@@ -87,18 +87,6 @@ struct AVFilterPad {
...
@@ -87,18 +87,6 @@ struct AVFilterPad {
*/
*/
int
rej_perms
;
int
rej_perms
;
/**
* Callback called before passing the first slice of a new frame. If
* NULL, the filter layer will default to storing a reference to the
* picture inside the link structure.
*
* Input video pads only.
*
* @return >= 0 on success, a negative AVERROR on error. picref will be
* unreferenced by the caller in case of error.
*/
void
(
*
start_frame
)(
AVFilterLink
*
link
,
AVFilterBufferRef
*
picref
);
/**
/**
* Callback function to get a video buffer. If NULL, the filter system will
* Callback function to get a video buffer. If NULL, the filter system will
* use ff_default_get_video_buffer().
* use ff_default_get_video_buffer().
...
@@ -116,17 +104,6 @@ struct AVFilterPad {
...
@@ -116,17 +104,6 @@ struct AVFilterPad {
AVFilterBufferRef
*
(
*
get_audio_buffer
)(
AVFilterLink
*
link
,
int
perms
,
AVFilterBufferRef
*
(
*
get_audio_buffer
)(
AVFilterLink
*
link
,
int
perms
,
int
nb_samples
);
int
nb_samples
);
/**
* Callback called after the slices of a frame are completely sent. If
* NULL, the filter layer will default to releasing the reference stored
* in the link structure during start_frame().
*
* Input video pads only.
*
* @return >= 0 on success, a negative AVERROR on error.
*/
int
(
*
end_frame
)(
AVFilterLink
*
link
);
/**
/**
* Filtering callback. This is where a filter receives a frame with
* Filtering callback. This is where a filter receives a frame with
* audio/video data and should do its processing.
* audio/video data and should do its processing.
...
...
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