summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-03-01 11:15:44 +0100
committerwm4 <wm4@nowhere>2013-03-01 11:15:44 +0100
commit6b3d510165201e5600e9ec25c37f33541c03f58a (patch)
treeea039183d050461ae4fec499b83ede1d4663d8d2
parentbf9b9c3bd0d0fe9d9116cbe287559bad5efe00fc (diff)
downloadmpv-6b3d510165201e5600e9ec25c37f33541c03f58a.tar.bz2
mpv-6b3d510165201e5600e9ec25c37f33541c03f58a.tar.xz
vo_sdl, vo_xv: remove redundant/useless VOCTRL_PAUSE usage
-rw-r--r--video/out/vo_sdl.c6
-rw-r--r--video/out/vo_xv.c5
2 files changed, 0 insertions, 11 deletions
diff --git a/video/out/vo_sdl.c b/video/out/vo_sdl.c
index 99829aefa6..69ecf273c0 100644
--- a/video/out/vo_sdl.c
+++ b/video/out/vo_sdl.c
@@ -177,7 +177,6 @@ struct priv {
struct mp_rect src_rect;
struct mp_rect dst_rect;
struct mp_osd_res osd_res;
- int int_pause;
struct formatmap_entry osd_format;
struct osd_bitmap_surface {
int bitmap_id;
@@ -980,15 +979,10 @@ static int get_eq(struct vo *vo, const char *name, int *value)
static int control(struct vo *vo, uint32_t request, void *data)
{
- struct priv *vc = vo->priv;
switch (request) {
case VOCTRL_FULLSCREEN:
set_fullscreen(vo, !vo_fs);
return 1;
- case VOCTRL_PAUSE:
- return vc->int_pause = 1;
- case VOCTRL_RESUME:
- return vc->int_pause = 0;
case VOCTRL_REDRAW_FRAME:
draw_image(vo, NULL);
return 1;
diff --git a/video/out/vo_xv.c b/video/out/vo_xv.c
index e98af7350e..cb22e960a1 100644
--- a/video/out/vo_xv.c
+++ b/video/out/vo_xv.c
@@ -93,7 +93,6 @@ struct xvctx {
uint32_t image_height;
uint32_t image_format;
struct mp_csp_details cached_csp;
- int is_paused;
struct mp_rect src_rect;
struct mp_rect dst_rect;
uint32_t max_width, max_height; // zero means: not set
@@ -936,10 +935,6 @@ static int control(struct vo *vo, uint32_t request, void *data)
{
struct xvctx *ctx = vo->priv;
switch (request) {
- case VOCTRL_PAUSE:
- return (ctx->is_paused = 1);
- case VOCTRL_RESUME:
- return (ctx->is_paused = 0);
case VOCTRL_GET_PANSCAN:
return VO_TRUE;
case VOCTRL_FULLSCREEN: