From 6deab3c040c936ecbb898213647c2f388ede0e86 Mon Sep 17 00:00:00 2001 From: stefano 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. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19072 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavfilter/graphparser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index d21d7faeb..e69f29574 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; -- 2.11.4.GIT