[FFmpeg-cvslog] r19072 - trunk/libavfilter/graphparser.h
stefano
subversion
Mon Jun 1 18:07:48 CEST 2009
Author: stefano
Date: Mon Jun 1 18:07:48 2009
New Revision: 19072
Log:
Remove the const qualifier for the name field of AVFilterInOut, since
it is meant to be freed.
Fix warnings.
Modified:
trunk/libavfilter/graphparser.h
Modified: trunk/libavfilter/graphparser.h
==============================================================================
--- trunk/libavfilter/graphparser.h Sun May 31 22:19:16 2009 (r19071)
+++ trunk/libavfilter/graphparser.h Mon Jun 1 18:07:48 2009 (r19072)
@@ -29,7 +29,7 @@
* A linked-list of the inputs/outputs of the filter chain.
*/
typedef struct AVFilterInOut {
- const char *name;
+ char *name;
AVFilterContext *filter;
int pad_idx;
More information about the ffmpeg-cvslog
mailing list