summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-06-08 21:35:16 +0200
committerAnton Khirnov <anton@khirnov.net>2012-12-18 20:14:54 +0100
commit77bd1bc73a1946b0f0ce09a7cbb242a65e138d06 (patch)
treecf677d05d1d812799b285ee812c17ae545d001f0 /avconv.h
parent0ec1642b60a5b1a4d913e2b9e3899173dff77e7a (diff)
avconv: use new options parser.
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/avconv.h b/avconv.h
index 11e846261f..defdf59c4a 100644
--- a/avconv.h
+++ b/avconv.h
@@ -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 */