[FFmpeg-cvslog] r12089 - trunk/libavfilter/avfilter.h
vitor
subversion
Fri Feb 15 23:13:14 CET 2008
Author: vitor
Date: Fri Feb 15 23:13:13 2008
New Revision: 12089
Log:
Make the opaque init parameter non-const.
Commited in SoC by Bobby Bingham on 2007-07-30 18:53:17
Modified:
trunk/libavfilter/avfilter.h
Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h (original)
+++ trunk/libavfilter/avfilter.h Fri Feb 15 23:13:13 2008
@@ -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
More information about the ffmpeg-cvslog
mailing list