mpv/options.h

19 lines
350 B
C
Raw Normal View History

#ifndef MPLAYER_OPTIONS_H
#define MPLAYER_OPTIONS_H
typedef struct MPOpts {
char **video_driver_list;
char **audio_driver_list;
int fixed_vo;
int vo_ontop;
int vo_screenwidth;
int vo_screenheight;
2008-04-20 21:37:12 +00:00
int vo_dbpp;
2008-04-16 04:11:12 +00:00
int correct_pts;
2008-04-21 02:18:40 +00:00
int loop_times;
2008-04-16 04:11:12 +00:00
int user_correct_pts;
2008-04-21 03:55:23 +00:00
float playback_speed;
} MPOpts;
#endif