]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Make two variables const
authorvitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 24 May 2008 20:39:45 +0000 (20:39 +0000)
committervitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 24 May 2008 20:39:45 +0000 (20:39 +0000)
Commited in SoC by Vitor Sessak on 2008-04-10 21:06:35

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13305 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavfilter/graphparser.c
libavfilter/graphparser.h

index 76ceacc5474b5f0148054ee6069f58200e614262..5b3a5464c2db808ab4f9382a667204f087954aaf 100644 (file)
@@ -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;
 
index 7dda160cd5864d1907f4fd4780f59cc057dc7132..278095e9408214541c0e07da308aa035feea3841 100644 (file)
@@ -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);