diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-09-17 17:47:43 +0300 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-09-17 18:15:20 +0300 |
commit | 74619f275e5f706ecd00c1ec4bb19f18213a9f9e (patch) | |
tree | d558de59756def327eac7176765d253a1417fe97 /libvo/video_out.h | |
parent | 3b3dfc02ac28283345ec90ade8e0e6e64b672147 (diff) | |
download | mpv-74619f275e5f706ecd00c1ec4bb19f18213a9f9e.tar.bz2 mpv-74619f275e5f706ecd00c1ec4bb19f18213a9f9e.tar.xz |
VO interface: Remove obsolete draw_frame() from new interface
Diffstat (limited to 'libvo/video_out.h')
-rw-r--r-- | libvo/video_out.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h index 48b2eb295c..c04e89b94c 100644 --- a/libvo/video_out.h +++ b/libvo/video_out.h @@ -165,13 +165,6 @@ struct vo_driver { int (*control)(struct vo *vo, uint32_t request, void *data); /* - * Display a new RGB/BGR frame of the video to the screen. - * params: - * src[0] - pointer to the image - */ - int (*draw_frame)(struct vo *vo, uint8_t *src[]); - - /* * Draw a planar YUV slice to the buffer: * params: * src[3] = source image planes (Y,U,V) |