summaryrefslogtreecommitdiff
path: root/libavcodec/motion-test.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-07-17 13:30:24 +0200
committerDiego Biurrun <diego@biurrun.de>2012-05-14 15:38:43 +0200
commit5aad8e80a78e6b1f1479aa45d29713d4f44ea0be (patch)
tree53076c2a143c8be50893345e348a7322862539d4 /libavcodec/motion-test.c
parent70be4dddc899d8a07c37819d602777a06591645a (diff)
motion-test: remove disabled code
Diffstat (limited to 'libavcodec/motion-test.c')
-rw-r--r--libavcodec/motion-test.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/motion-test.c b/libavcodec/motion-test.c
index a22cb1eec5..fb97f085be 100644
--- a/libavcodec/motion-test.c
+++ b/libavcodec/motion-test.c
@@ -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
}
}