summaryrefslogtreecommitdiffstats
path: root/options.h
blob: 2d6c8d48e4112c57aaa69bc777987d82dd34b0df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 correct_pts;
    int user_correct_pts;
} MPOpts;

#endif