summaryrefslogtreecommitdiffstats
path: root/options.h
blob: 81617e27fb2a07d208ea3feae18ccb3b41725c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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;
    int vo_dbpp;
    int correct_pts;
    int loop_times;
    int user_correct_pts;
    int audio_id;
    int video_id;
    float playback_speed;
} MPOpts;

#endif