comparison libvo/vo_dxr3.c @ 8148:5b39e79af5fe

removed get_info, using the same sheme as in libmpcodecs instead
author alex
date Mon, 11 Nov 2002 15:22:10 +0000
parents 9fc45fe0d444
children d1ed5c592696
comparison
equal deleted inserted replaced
8147:538f88a49b50 8148:5b39e79af5fe
127 #include "x11_common.h" 127 #include "x11_common.h"
128 #endif 128 #endif
129 129
130 #define SPU_SUPPORT 130 #define SPU_SUPPORT
131 131
132 static vo_info_t vo_info = 132 static vo_info_t info =
133 { 133 {
134 "DXR3/H+ video out", 134 "DXR3/H+ video out",
135 "dxr3", 135 "dxr3",
136 "David Holm <dholm@iname.com>", 136 "David Holm <dholm@iname.com>",
137 "" 137 ""
607 #endif 607 #endif
608 608
609 return 0; 609 return 0;
610 } 610 }
611 611
612 static const vo_info_t* get_info(void)
613 {
614 return &vo_info;
615 }
616
617 static void draw_alpha(int x, int y, int w, int h, unsigned char* src, unsigned char *srca, int srcstride) 612 static void draw_alpha(int x, int y, int w, int h, unsigned char* src, unsigned char *srca, int srcstride)
618 { 613 {
619 #ifdef SPU_SUPPORT 614 #ifdef SPU_SUPPORT
620 unsigned char *buf = &osdpicbuf[(y * osdpicbuf_w) + x]; 615 unsigned char *buf = &osdpicbuf[(y * osdpicbuf_w) + x];
621 int by = 0; 616 int by = 0;