summaryrefslogtreecommitdiffstats
path: root/libvo/vesa_lvo.c
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-03 09:12:32 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-03 09:12:32 +0000
commitc4d519e1938327e2771f7a8e7d262adaca62c578 (patch)
tree5ef546a6ea021030158e57d614c0b3cb76216efa /libvo/vesa_lvo.c
parent420039c5f5833fea1b2e32ec95ccd9f8b4e791bf (diff)
downloadmpv-c4d519e1938327e2771f7a8e7d262adaca62c578.tar.bz2
mpv-c4d519e1938327e2771f7a8e7d262adaca62c578.tar.xz
code cleanup
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4494 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vesa_lvo.c')
-rw-r--r--libvo/vesa_lvo.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libvo/vesa_lvo.c b/libvo/vesa_lvo.c
index 62e276229c..f477c09ea1 100644
--- a/libvo/vesa_lvo.c
+++ b/libvo/vesa_lvo.c
@@ -47,8 +47,16 @@ extern int verbose;
extern vo_functions_t video_out_vesa;
+static void vlvo_query_vaa(vo_vaa_t *vaa)
+{
+ memset(vaa,0,sizeof(vo_vaa_t));
+}
+
int vlvo_preinit(const char *drvname)
{
+ printf("vesa_lvo: This branch is no longer supported.\n"
+ "vesa_lvo: Please use -vo vesa:vidix instead\n");
+ return -1;
if(verbose > 1) printf("vesa_lvo: vlvo_preinit(%s) was called\n",drvname);
lvo_handler = open(drvname,O_RDWR);
if(lvo_handler == -1)
@@ -62,6 +70,7 @@ int vlvo_preinit(const char *drvname)
video_out_vesa.flip_page=vlvo_flip_page;
video_out_vesa.draw_osd=vlvo_draw_osd;
video_out_vesa.query_format=vlvo_query_info;
+ video_out_vesa.query_vaa=vlvo_query_vaa;
return 0;
}
@@ -70,6 +79,9 @@ int vlvo_init(unsigned src_width,unsigned src_height,
unsigned dst_height,unsigned format,unsigned dest_bpp)
{
size_t i,awidth;
+ printf("vesa_lvo: This branch is no longer supported.\n"
+ "vesa_lvo: Please use -vo vesa:vidix instead\n");
+ return -1;
if(verbose > 1) printf("vesa_lvo: vlvo_init() was called\n");
image_width = src_width;
image_height = src_height;