summaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'options.h')
-rw-r--r--options.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/options.h b/options.h
index be99869e71..7b46ab15e6 100644
--- a/options.h
+++ b/options.h
@@ -16,6 +16,25 @@ typedef struct MPOpts {
int video_id;
int sub_id;
float playback_speed;
+ struct lavc_param {
+ int workaround_bugs;
+ int error_resilience;
+ int error_concealment;
+ int gray;
+ int vstats;
+ int idct_algo;
+ int debug;
+ int vismv;
+ int skip_top;
+ int skip_bottom;
+ int fast;
+ char *lowres_str;
+ char *skip_loop_filter_str;
+ char *skip_idct_str;
+ char *skip_frame_str;
+ int threads;
+ int bitexact;
+ } lavc_param;
} MPOpts;
#endif