summaryrefslogtreecommitdiff
path: root/libavfilter/internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-27 01:13:42 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-30 16:58:50 +0100
commitc0c0b19644eb60957294d6cc211c8f91c88afe35 (patch)
tree3fac0983c01fcb075a023083e221257d2d7a7123 /libavfilter/internal.h
parent8997a0fa79cc4d20e78fd6f0de40f7127828978a (diff)
lavfi: remove some draw_slice related code that has become unneeded
Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r--libavfilter/internal.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index d098156442..b3ef9902d3 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -128,16 +128,6 @@ struct AVFilterPad {
int (*end_frame)(AVFilterLink *link);
/**
- * Slice drawing callback. This is where a filter receives video data
- * and should do its processing.
- *
- * Input video pads only.
- *
- * @return >= 0 on success, a negative AVERROR on error.
- */
- int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
-
- /**
* Filtering callback. This is where a filter receives a frame with
* audio/video data and should do its processing.
*