summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 5ae219093f..218dd36d1b 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -33,7 +33,6 @@
#include "video_out.h"
#include "aspect.h"
#include "geometry.h"
-#include "old_vo_wrapper.h"
#include "input/input.h"
#include "mp_fifo.h"
#include "m_config.h"
@@ -219,14 +218,6 @@ void vo_skip_frame(struct vo *vo)
vo->frame_loaded = false;
}
-int vo_draw_frame(struct vo *vo, uint8_t *src[])
-{
- assert(!vo->driver->is_new);
- if (!vo->config_ok)
- return 0;
- return old_vo_draw_frame(vo, src);
-}
-
int vo_draw_slice(struct vo *vo, uint8_t *src[], int stride[], int w, int h, int x, int y)
{
return vo->driver->draw_slice(vo, src, stride, w, h, x, y);