summaryrefslogtreecommitdiffstats
path: root/libvo/vo_cvidix.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_cvidix.c')
-rw-r--r--libvo/vo_cvidix.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libvo/vo_cvidix.c b/libvo/vo_cvidix.c
index a4a29719de..593ded5887 100644
--- a/libvo/vo_cvidix.c
+++ b/libvo/vo_cvidix.c
@@ -49,8 +49,6 @@ static const vo_info_t info = {
LIBVO_EXTERN(cvidix)
-#define UNUSED(x) ((void)(x)) /* Removes warning about unused arguments */
-
/* VIDIX related */
static char *vidix_name;
static uint32_t swidth,sheight,sformat;
@@ -136,18 +134,11 @@ static void flip_page(void){
}
static int draw_slice(uint8_t *src[], int stride[],int w, int h, int x, int y){
- UNUSED(src);
- UNUSED(stride);
- UNUSED(w);
- UNUSED(h);
- UNUSED(x);
- UNUSED(y);
mp_msg(MSGT_VO, MSGL_FATAL, "vo_cvidix: error: didn't use vidix draw_slice!\n");
return -1;
}
static int draw_frame(uint8_t *src[]){
- UNUSED(src);
mp_msg(MSGT_VO, MSGL_FATAL, "vo_cvidix: error: didn't use vidix draw_frame!\n");
return -1;
}