diff snow.c @ 5924:cf1eed15eb87 libavcodec

avoid some halfpel related #ifdef
author aurel
date Thu, 15 Nov 2007 22:32:39 +0000
parents ae61a5713584
children 4127277ac925
line wrap: on
line diff
--- a/snow.c	Thu Nov 15 12:40:40 2007 +0000
+++ b/snow.c	Thu Nov 15 22:32:39 2007 +0000
@@ -4139,7 +4139,8 @@
     return 0;
 }
 
-#ifdef USE_HALFPEL_PLANE
+#define USE_HALFPEL_PLANE 0
+
 static void halfpel_interpol(SnowContext *s, uint8_t *halfpel[4][4], AVFrame *frame){
     int p,x,y;
 
@@ -4183,7 +4184,6 @@
 //FIXME border!
     }
 }
-#endif /* USE_HALFPEL_PLANE */
 
 static int frame_start(SnowContext *s){
    AVFrame tmp;
@@ -4199,10 +4199,8 @@
     tmp= s->last_picture[s->max_ref_frames-1];
     memmove(s->last_picture+1, s->last_picture, (s->max_ref_frames-1)*sizeof(AVFrame));
     memmove(s->halfpel_plane+1, s->halfpel_plane, (s->max_ref_frames-1)*sizeof(void*)*4*4);
-#ifdef USE_HALFPEL_PLANE
-    if(s->current_picture.data[0])
+    if(USE_HALFPEL_PLANE && s->current_picture.data[0])
         halfpel_interpol(s, s->halfpel_plane[0], &s->current_picture);
-#endif
     s->last_picture[0]= s->current_picture;
     s->current_picture= tmp;