1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

motion-test: remove disabled code

This commit is contained in:
Diego Biurrun 2011-07-17 13:30:24 +02:00
parent 70be4dddc8
commit 5aad8e80a7

View 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
}
}