Move vo_dbpp to options struct
[mplayer.git] / options.h
blobaa6bb1eee8ab147d7fa1f65f7e0ea07b2a4dd7ee
1 #ifndef MPLAYER_OPTIONS_H
2 #define MPLAYER_OPTIONS_H
4 typedef struct MPOpts {
5 char **video_driver_list;
6 char **audio_driver_list;
7 int fixed_vo;
8 int vo_ontop;
9 int vo_dbpp;
10 int correct_pts;
11 int user_correct_pts;
12 } MPOpts;
14 #endif