2008-04-19 04:45:16 +00:00
|
|
|
#ifndef MPLAYER_OLD_VO_DEFINES_H
|
|
|
|
#define MPLAYER_OLD_VO_DEFINES_H
|
|
|
|
|
|
|
|
#include "options.h"
|
|
|
|
#include "video_out.h"
|
|
|
|
#include "old_vo_wrapper.h"
|
|
|
|
|
|
|
|
// Triggers more defines in x11_common.h
|
|
|
|
#define IS_OLD_VO 1
|
|
|
|
|
|
|
|
#define vo_ontop global_vo->opts->vo_ontop
|
2008-04-18 03:28:47 +00:00
|
|
|
#define vo_config_count global_vo->config_count
|
2008-04-20 20:29:28 +00:00
|
|
|
#define vo_dx global_vo->dx
|
|
|
|
#define vo_dy global_vo->dy
|
|
|
|
#define vo_dwidth global_vo->dwidth
|
|
|
|
#define vo_dheight global_vo->dheight
|
2008-04-20 21:37:12 +00:00
|
|
|
#define vo_dbpp global_vo->opts->vo_dbpp
|
2008-04-20 23:18:28 +00:00
|
|
|
#define vo_screenwidth global_vo->opts->vo_screenwidth
|
|
|
|
#define vo_screenheight global_vo->opts->vo_screenheight
|
2008-04-24 04:01:53 +00:00
|
|
|
#define vidmode global_vo->opts->vidmode
|
2008-04-24 04:36:43 +00:00
|
|
|
#define movie_aspect global_vo->opts->movie_aspect
|
2009-02-13 01:52:51 +00:00
|
|
|
|
|
|
|
#define calc_src_dst_rects(...) calc_src_dst_rects(global_vo, __VA_ARGS__)
|
2008-04-19 04:45:16 +00:00
|
|
|
#endif
|