summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-20 23:29:28 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:46:40 +0300
commiteaab1ce896adbcb58e6503ea2dcf789d99bd29f5 (patch)
tree40a03206817797e1e293185e6df304c4cb63165f /libvo/video_out.h
parent7521aac66509d18666b7737160153986cc1437ac (diff)
downloadmpv-eaab1ce896adbcb58e6503ea2dcf789d99bd29f5.tar.bz2
mpv-eaab1ce896adbcb58e6503ea2dcf789d99bd29f5.tar.xz
Move vo_dx,vo_dy,vo_dwidth,vo_dheight to vo struct
Diffstat (limited to 'libvo/video_out.h')
-rw-r--r--libvo/video_out.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h
index 1870af17d3..ad298c04f3 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -213,6 +213,10 @@ struct vo {
void *priv;
struct MPOpts *opts;
struct vo_x11_state *x11;
+ int dx;
+ int dy;
+ int dwidth;
+ int dheight;
};
struct vo *init_best_video_out(struct MPOpts *opts, struct vo_x11_state *x11);
@@ -245,10 +249,6 @@ extern int vo_screenwidth;
extern int vo_screenheight;
// requested resolution/bpp: (-x -y -bpp options)
-extern int vo_dx;
-extern int vo_dy;
-extern int vo_dwidth;
-extern int vo_dheight;
extern int vo_dbpp;
extern int vo_grabpointer;