[FFmpeg-cvslog] r13305 - in trunk/libavfilter: graphparser.c graphparser.h

vitor subversion
Sat May 24 22:39:45 CEST 2008


Author: vitor
Date: Sat May 24 22:39:45 2008
New Revision: 13305

Log:
Make two variables const

Commited in SoC by Vitor Sessak on 2008-04-10 21:06:35


Modified:
   trunk/libavfilter/graphparser.c
   trunk/libavfilter/graphparser.h

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:39:45 2008
@@ -42,7 +42,7 @@ static const AVClass filter_parser_class
 static const AVClass *log_ctx = &filter_parser_class;
 
 static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
-                                      char *name, char *args)
+                                      const char *name, const char *args)
 {
     AVFilterContext *filt;
 

Modified: trunk/libavfilter/graphparser.h
==============================================================================
--- trunk/libavfilter/graphparser.h	(original)
+++ trunk/libavfilter/graphparser.h	Sat May 24 22:39:45 2008
@@ -31,8 +31,8 @@
  * @param filters string to be parsed
  * @param in      input to the graph to be parsed (TODO: allow several)
  * @param inpad   pad index of the input
- * @param in      output to the graph to be parsed (TODO: allow several)
- * @param inpad   pad index of the output
+ * @param out     output to the graph to be parsed (TODO: allow several)
+ * @param outpad  pad index of the output
  * @return        zero on success, -1 on error
  */
 int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad);




More information about the ffmpeg-cvslog mailing list