summaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'options.h')
-rw-r--r--options.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/options.h b/options.h
index e704c87cd7..6438f0e97b 100644
--- a/options.h
+++ b/options.h
@@ -159,6 +159,24 @@ typedef struct MPOpts {
int use_ar; // apple remote
int default_bindings;
} input;
+
+ struct encode_output_conf {
+ char *file;
+ char *format;
+ char **fopts;
+ float fps;
+ char *vcodec;
+ char **vopts;
+ char *acodec;
+ char **aopts;
+ int harddup;
+ float voffset;
+ float aoffset;
+ int copyts;
+ int rawts;
+ int autofps;
+ int neverdrop;
+ } encode_output;
} MPOpts;
#endif