summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.h
diff options
context:
space:
mode:
authormswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-18 17:34:20 +0000
committermswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-18 17:34:20 +0000
commit41277cabf67423ffe06f2588c29f4e311ba569dd (patch)
treed43f5418a0261d2c045eca23119d51bb02f8d578 /libvo/video_out.h
parent6842124760e41665342000477e751baa91cf0713 (diff)
downloadmpv-41277cabf67423ffe06f2588c29f4e311ba569dd.tar.bz2
mpv-41277cabf67423ffe06f2588c29f4e311ba569dd.tar.xz
Added VOCTRL_PAUSE and VOCTRL_RESUME
Fixed playback bug in vo_dxr3 which would cause syncloss when playing ntsc movies on pal and vice versa (this does not affect mpeg playback as we still don't know how to set the internal fps registers) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4755 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.h')
-rw-r--r--libvo/video_out.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h
index 9beb9ea383..6bedc1367b 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -21,7 +21,7 @@
#define VOCTRL_QUERY_VAA 1
/* takes a pointer to uint32_t fourcc */
#define VOCTRL_QUERY_FORMAT 2
-/* signal a device reset (seek/pause) */
+/* signal a device reset seek */
#define VOCTRL_RESET 3
/* true if vo driver can use GUI created windows */
#define VOCTRL_GUISUPPORT 4
@@ -29,6 +29,10 @@
#define VOCTRL_FULLSCREEN 5
/* user wants to have screen shot. (currently without args)*/
#define VOCTRL_SCREENSHOT 6
+/* signal a device pause */
+#define VOCTRL_PAUSE 7
+/* start/resume playback */
+#define VOCTRL_RESUME 8
#define VO_TRUE 1
#define VO_FALSE 0