Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-05-22 18:57:59 +0300
committerAnton Khirnov <anton@khirnov.net>2016-06-21 13:39:02 +0300
commit49670e4218d34899a1c37abb7a11615efc16f757 (patch)
treeaeeeaf41a6ae6575857a554477a7121960724430 /avconv.h
parent58640fe89ec4f2a3d67c0a2585fca8de34440857 (diff)
avconv: add a function for determining whether a filtergraph is simple
This makes the code easier to read.
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/avconv.h b/avconv.h
index 84fabf6371..be8ef23e51 100644
--- a/avconv.h
+++ b/avconv.h
@@ -449,6 +449,7 @@ int guess_input_channel_layout(InputStream *ist);
int configure_filtergraph(FilterGraph *fg);
int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out);
int ist_in_filtergraph(FilterGraph *fg, InputStream *ist);
+int filtergraph_is_simple(FilterGraph *fg);
FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost);
int init_complex_filtergraph(FilterGraph *fg);