summaryrefslogtreecommitdiffstats
path: root/libvo/vo_svga.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_svga.c')
-rw-r--r--libvo/vo_svga.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libvo/vo_svga.c b/libvo/vo_svga.c
index 1435d1ecdc..c74cf61089 100644
--- a/libvo/vo_svga.c
+++ b/libvo/vo_svga.c
@@ -66,9 +66,6 @@ TODO:
#include <assert.h>
-//silence warnings, probably it have to go in some global header
-#define UNUSED(x) ((void)(x))
-
static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src,
unsigned char *srca, int stride);
@@ -559,16 +556,11 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
static int draw_slice(uint8_t *image[],int stride[],
int w, int h, int x, int y) {
assert(0);
- UNUSED(image);UNUSED(stride);
- UNUSED(w);UNUSED(h);
- UNUSED(x);UNUSED(y);
-
return VO_ERROR;//this is yv12 only -> vf_scale should do all transforms
}
static int draw_frame(uint8_t *src[]) {
assert(0);
- UNUSED(src);
return VO_ERROR;//this one should not be called
}