Commit 84dd0df0 authored by vitor's avatar vitor

Make the opaque init parameter non-const.

Commited in SoC by Bobby Bingham on 2007-07-30 18:53:17


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12089 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3842fe67
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment