fix many compile warnings

This commit is contained in:
niels
2014-12-21 17:05:25 +01:00
parent 9b4391bc79
commit c31f40fcdf
60 changed files with 110 additions and 474 deletions

View File

@@ -45,10 +45,6 @@ vj_effect *medianfilter_init(int w, int h)
void medianfilter_apply( VJFrame *frame, int width, int height, int val)
{
int i;
int len = (width * height);
int uv_len = frame->uv_len;
uint8_t *Y = frame->data[0];
uint8_t *Cb = frame->data[1];
uint8_t *Cr = frame->data[2];