# HG changeset patch # User diego # Date 1195130440 0 # Node ID ae61a57135842a7463328e4374d0ef21536eeedf # Parent b731c1f3d806a378719009ca0a2191927566c3d0 Put halfpel_interpol under the same #ifdef as its usage, fixes the warning: snow.c:4142: warning: #halfpel_interpol# defined but not used diff -r b731c1f3d806 -r ae61a5713584 snow.c --- a/snow.c Thu Nov 15 10:28:12 2007 +0000 +++ b/snow.c Thu Nov 15 12:40:40 2007 +0000 @@ -4139,6 +4139,7 @@ return 0; } +#ifdef USE_HALFPEL_PLANE static void halfpel_interpol(SnowContext *s, uint8_t *halfpel[4][4], AVFrame *frame){ int p,x,y; @@ -4182,6 +4183,7 @@ //FIXME border! } } +#endif /* USE_HALFPEL_PLANE */ static int frame_start(SnowContext *s){ AVFrame tmp;