summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-12 02:31:39 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-16 17:16:09 +0200
commit7b0e63b7d5628d8a7af8d4a05932815e4a43a01c (patch)
treee3608eeaacf90dd8f5a575e437e1d653f14e632d /libavfilter/avfilter.h
parent8f51c12f8750efa1f05a61a2535298e64daad1e1 (diff)
downloadffmpeg-7b0e63b7d5628d8a7af8d4a05932815e4a43a01c.tar.gz
avfilter: Remove init_opaque callback
The last init_opaque callback has been removed in commit 07ffdedf784e86b88074d8d3e08e55752869562a; the opaque argument has been always NULL since 0acf7e268b2f873379cd854b4d5aaba6f9c1f0b5. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 360f63bc45..5a225ffc44 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -301,13 +301,6 @@ typedef struct AVFilter {
int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags);
/**
- * Filter initialization function, alternative to the init()
- * callback. Args contains the user-supplied parameters, opaque is
- * used for providing binary data.
- */
- int (*init_opaque)(AVFilterContext *ctx, void *opaque);
-
- /**
* Filter activation function.
*
* Called when any processing is needed from the filter, instead of any