From 498f0305833f9945187ff11beadbab20e4c3df9f Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 24 May 2008 20:40:37 +0000 Subject: [PATCH] The name field of AVFilterInOut can be declared const Commited in SoC by Vitor Sessak on 2008-04-21 18:42:11 Originally committed as revision 13322 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/graphparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index c28d912..46ebfdc 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -183,7 +183,7 @@ enum LinkType { */ typedef struct AVFilterInOut { enum LinkType type; - char *name; + const char *name; AVFilterContext *filter; int pad_idx; -- 2.7.4