summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.h
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-09 22:38:36 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-09 22:38:36 +0000
commit1dbeaf91541e7b7ba685df92d02555b9a05d9d15 (patch)
tree3c1e4de0cefdb62de8be6816b038412862569f9f /libvo/video_out.h
parent03c0dd5b71dde73cd8f45772870fc6d0652dde93 (diff)
downloadmpv-1dbeaf91541e7b7ba685df92d02555b9a05d9d15.tar.bz2
mpv-1dbeaf91541e7b7ba685df92d02555b9a05d9d15.tar.xz
added voctrl_guisupport and fixed some typos
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4619 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.h')
-rw-r--r--libvo/video_out.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h
index c7f00f8b25..0a44c99d4d 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -21,8 +21,10 @@
#define VOCTRL_QUERY_VAA 1
/* takes a pointer to uint32_t fourcc */
#define VOCTRL_QUERY_FORMAT 2
-/* signal a device reset (seek/paus) */
+/* signal a device reset (seek/pause) */
#define VOCTRL_RESET 3
+/* true if vo driver can use GUI created windows */
+#define VOCTRL_GUISUPPORT 4
#define VO_TRUE 1
#define VO_FALSE 0
@@ -50,8 +52,8 @@ typedef struct bes_da_s
vidix:dest */
int flags; /* Probably will work only when flag == 0 */
/* memory model */
- unsigned frame_size; /* destinition frame size */
- unsigned num_frames; /* number available frames */
+ unsigned frame_size; /* destination frame size */
+ unsigned num_frames; /* number of available frames */
unsigned offsets[VID_PLAY_MAXFRAMES]; /* relative offset of each frame from begin of video memory */
vidix_yuv_t offset; /* relative offsets within frame for yuv planes */
void* dga_addr; /* linear address of BES */
@@ -164,7 +166,7 @@ int vo_init(void);
// NULL terminated array of all drivers
extern vo_functions_t* video_out_drivers[];
-// currect resolution/bpp on screen: (should be autodetected by vo_init())
+// correct resolution/bpp on screen: (should be autodetected by vo_init())
extern int vo_depthonscreen;
extern int vo_screenwidth;
extern int vo_screenheight;