diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-17 13:30:24 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-14 15:38:43 +0200 |
commit | 5aad8e80a78e6b1f1479aa45d29713d4f44ea0be (patch) | |
tree | 53076c2a143c8be50893345e348a7322862539d4 | |
parent | 70be4dddc899d8a07c37819d602777a06591645a (diff) | |
download | ffmpeg-5aad8e80a78e6b1f1479aa45d29713d4f44ea0be.tar.gz |
motion-test: remove disabled code
-rw-r--r-- | libavcodec/motion-test.c | 4 |
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 } } |