summaryrefslogtreecommitdiff
path: root/libavfilter/internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-05 23:25:18 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-05 23:36:09 +0100
commit2468827c06ad9ed7b2500bd22dc984d190a58733 (patch)
tree16e04627fa2902a425930b7a6dd0aefef381220b /libavfilter/internal.h
parent7e5d4fa97d28e7f669351fc56742967b3eaac25d (diff)
internal.h: remove start/end_frame from AVFilterPad
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r--libavfilter/internal.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index b3ef9902d3..d03de56644 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -88,18 +88,6 @@ struct AVFilterPad {
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
* use ff_default_get_video_buffer().
*
@@ -117,17 +105,6 @@ struct AVFilterPad {
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
* audio/video data and should do its processing.
*