diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:13:13 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:13:13 +0000 |
commit | 95bcf498851e1fe2c332401b6864db267365a060 (patch) | |
tree | 56760b9109bc0c6d7f627d45aaecf168eab826b9 /libavfilter | |
parent | 25f8e6014ae3570d986f4417aa7a74a4736d8ffd (diff) | |
download | ffmpeg-95bcf498851e1fe2c332401b6864db267365a060.tar.gz |
Make the opaque init parameter non-const.
Commited in SoC by Bobby Bingham on 2007-07-30 18:53:17
Originally committed as revision 12089 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 0dd0a32b5f..b42f5b480c 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -169,7 +169,7 @@ typedef struct * opaque is data provided by the code requesting creation of the filter, * and is used to pass data to the filter. */ - int (*init)(AVFilterContext *ctx, const char *args, const void *opaque); + int (*init)(AVFilterContext *ctx, const char *args, void *opaque); void (*uninit)(AVFilterContext *ctx); const AVFilterPad *inputs; /// NULL terminated list of inputs. NULL if none |