OSDN Git Service

motion-test: remove disabled code
authorDiego Biurrun <diego@biurrun.de>
Sun, 17 Jul 2011 11:30:24 +0000 (13:30 +0200)
committerDiego Biurrun <diego@biurrun.de>
Mon, 14 May 2012 13:38:43 +0000 (15:38 +0200)
libavcodec/motion-test.c

index a22cb1e..fb97f08 100644 (file)
@@ -48,11 +48,7 @@ static void fill_random(uint8_t *tab, int size)
 
     av_lfg_init(&prng, 1);
     for(i=0;i<size;i++) {
-#if 1
         tab[i] = av_lfg_get(&prng) % 256;
-#else
-        tab[i] = i;
-#endif
     }
 }