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
This commit is contained in:
Vitor Sessak 2008-02-15 22:13:13 +00:00
parent 25f8e6014a
commit 95bcf49885

View File

@ -169,7 +169,7 @@ typedef struct
* opaque is data provided by the code requesting creation of the filter, * opaque is data provided by the code requesting creation of the filter,
* and is used to pass data to 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); void (*uninit)(AVFilterContext *ctx);
const AVFilterPad *inputs; /// NULL terminated list of inputs. NULL if none const AVFilterPad *inputs; /// NULL terminated list of inputs. NULL if none