[FFmpeg-soc] [soc]: r2136 - libavfilter/graphparser.c

vitor subversion at mplayerhq.hu
Mon Apr 21 20:42:12 CEST 2008


Author: vitor
Date: Mon Apr 21 20:42:11 2008
New Revision: 2136

Log:
The name field of AVFilterInOut can be declared const

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c	(original)
+++ libavfilter/graphparser.c	Mon Apr 21 20:42:11 2008
@@ -183,7 +183,7 @@ enum LinkType {
  */
 typedef struct AVFilterInOut {
     enum LinkType type;
-    char *name;
+    const char *name;
     AVFilterContext *filter;
     int pad_idx;
 



More information about the FFmpeg-soc mailing list