diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:37 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:37 +0000 |
commit | 498f0305833f9945187ff11beadbab20e4c3df9f (patch) | |
tree | d1dbffa4a4a7eee2e4157411408a20eab53bd39c /libavfilter/graphparser.c | |
parent | dbec351d9f859e753ff6c1f11032a30f5b7786a6 (diff) | |
download | ffmpeg-498f0305833f9945187ff11beadbab20e4c3df9f.tar.gz |
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
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r-- | libavfilter/graphparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index c28d912163..46ebfdc638 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; |