diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-08 21:35:16 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-18 20:14:54 +0100 |
commit | 77bd1bc73a1946b0f0ce09a7cbb242a65e138d06 (patch) | |
tree | cf677d05d1d812799b285ee812c17ae545d001f0 /avconv.h | |
parent | 0ec1642b60a5b1a4d913e2b9e3899173dff77e7a (diff) | |
download | ffmpeg-77bd1bc73a1946b0f0ce09a7cbb242a65e138d06.tar.gz |
avconv: use new options parser.
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -67,6 +67,8 @@ typedef struct MetadataMap { } MetadataMap; typedef struct OptionsContext { + OptionGroup *g; + /* input/output options */ int64_t start_time; const char *format; @@ -361,4 +363,6 @@ int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOu int ist_in_filtergraph(FilterGraph *fg, InputStream *ist); FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost); +int avconv_parse_options(int argc, char **argv); + #endif /* AVCONV_H */ |