diff options
author | al3x <al3x@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-06-21 22:34:25 +0000 |
---|---|---|
committer | al3x <al3x@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-06-21 22:34:25 +0000 |
commit | b4045ad499f8ee7b7f14c1d351bc2b10e336faae (patch) | |
tree | caf9f5cb63f9c63da2512a6a3a5c07b38101e7f8 /libvo | |
parent | 8a7fd61a022ff031837e0ca00a383dac01c4cadf (diff) |
vo_subdevice implemented
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1185 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/video_out.c | 2 | ||||
-rw-r--r-- | libvo/video_out.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c index 060b39df4c..3077af609e 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -42,6 +42,8 @@ int vo_dheight=0; int vo_dbpp=0; int vo_doublebuffering = 0; +char *vo_subdevice = NULL; + // // Externally visible list of all vo drivers // diff --git a/libvo/video_out.h b/libvo/video_out.h index 394a10d7dc..fd18bc7598 100644 --- a/libvo/video_out.h +++ b/libvo/video_out.h @@ -104,3 +104,5 @@ extern int vo_dwidth; extern int vo_dheight; extern int vo_dbpp; +extern char *vo_subdevice; + |