From 0802356cfca638775a67680aaa602259db745689 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 1 Jun 2009 16:07:48 +0000 Subject: [PATCH] Remove the const qualifier for the name field of AVFilterInOut, since it is meant to be freed. Fix warnings. Originally committed as revision 19072 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/graphparser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index d21d7faeb7..e69f295740 100644 --- a/libavfilter/graphparser.h +++ b/libavfilter/graphparser.h @@ -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;