summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-05-22 19:57:36 +0200
committerAnton Khirnov <anton@khirnov.net>2016-06-21 12:39:02 +0200
commit73c6ec6d659bab11ac424a4ba6ce3a56246295ee (patch)
tree79300ca1198423c428a4aad9b69f2e2bfb1fdd87 /avconv.h
parent49670e4218d34899a1c37abb7a11615efc16f757 (diff)
avconv: create simple filtergraphs earlier
We already have all the necessary information in open_output_file(). This makes the information about the stream/filtergraph mappings available earlier.
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv.h b/avconv.h
index be8ef23e51..78dbbdd5a8 100644
--- a/avconv.h
+++ b/avconv.h
@@ -450,7 +450,7 @@ 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_simple_filtergraph(InputStream *ist, OutputStream *ost);
int init_complex_filtergraph(FilterGraph *fg);
int avconv_parse_options(int argc, char **argv);