]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/internal.h
Reindent.
[ffmpeg] / libavfilter / internal.h
index 3687726e136a51b0a8c4f4d71460bf7036194e37..37d085da52c19dc3a9dd541511053a06df248c6f 100644 (file)
  */
 
 #include "avfilter.h"
+#include "avfiltergraph.h"
 
-void ff_dprintf_picref(void *ctx, AVFilterBufferRef *picref, int end);
+void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end);
+
+char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms);
 
 void ff_dprintf_link(void *ctx, AVFilterLink *link, int end);
 
 #define FF_DPRINTF_START(ctx, func) dprintf(NULL, "%-16s: ", #func)
 
+/**
+ * Check for the validity of graph.
+ *
+ * A graph is considered valid if all its input and output pads are
+ * connected.
+ *
+ * @return 0 in case of success, a negative value otherwise
+ */
+int ff_avfilter_graph_check_validity(AVFilterGraph *graphctx, AVClass *log_ctx);
+
+/**
+ * Configure all the links of graphctx.
+ *
+ * @return 0 in case of success, a negative value otherwise
+ */
+int ff_avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx);
+
+/**
+ * Configure the formats of all the links in the graph.
+ */
+int ff_avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx);
+
 #endif  /* AVFILTER_INTERNAL_H */