summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:40:37 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:40:37 +0000
commit498f0305833f9945187ff11beadbab20e4c3df9f (patch)
treed1dbffa4a4a7eee2e4157411408a20eab53bd39c /libavfilter
parentdbec351d9f859e753ff6c1f11032a30f5b7786a6 (diff)
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')
-rw-r--r--libavfilter/graphparser.c2
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;