diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-22 19:57:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-21 12:39:02 +0200 |
commit | 73c6ec6d659bab11ac424a4ba6ce3a56246295ee (patch) | |
tree | 79300ca1198423c428a4aad9b69f2e2bfb1fdd87 /avconv.h | |
parent | 49670e4218d34899a1c37abb7a11615efc16f757 (diff) | |
download | ffmpeg-73c6ec6d659bab11ac424a4ba6ce3a56246295ee.tar.gz |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |