]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/graphparser.h
Extend ff_dprintf_picref() to make it print video interlaced and
[ffmpeg] / libavfilter / graphparser.h
index 725b728b88e6d5d439f6ff26692257e404a94a2f..510b4b3357d638fcec388c41c9cc98c1aae2a078 100644 (file)
@@ -29,7 +29,7 @@
  * A linked-list of the inputs/outputs of the filter chain.
  */
 typedef struct AVFilterInOut {
-    const char *name;
+    char *name;
     AVFilterContext *filter;
     int pad_idx;
 
@@ -37,7 +37,7 @@ typedef struct AVFilterInOut {
 } AVFilterInOut;
 
 /**
- * Add to a graph a graph described by a string.
+ * Add a graph described by a string to a graph.
  *
  * @param graph   the filter graph where to link the parsed graph context
  * @param filters string to be parsed
@@ -45,7 +45,7 @@ typedef struct AVFilterInOut {
  * @param outputs linked list to the outputs of the graph
  * @return        zero on success, -1 on error
  */
-int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
+int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
                          AVFilterInOut *inputs, AVFilterInOut *outputs,
                          AVClass *log_ctx);