summaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-24 03:59:21 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-25 03:31:57 +0300
commit3fa6f2d3e1814783db8cc5574136b89facd78ebc (patch)
tree87eb0bed22a238da615101b08df063dd2bc8ddf3 /options.h
parent15b34d1fd86f252bf811594bbc265a3f977e4775 (diff)
downloadmpv-3fa6f2d3e1814783db8cc5574136b89facd78ebc.tar.bz2
mpv-3fa6f2d3e1814783db8cc5574136b89facd78ebc.tar.xz
Move -lavdopts to options struct
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