mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-29 10:52:20 +00:00
Move #includes, which are only used in the test program, below the #ifdef
surrounding the test program to save an #ifdef at the top of the file. Originally committed as revision 14439 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
af274fd1e1
commit
00c6161d5a
@ -28,11 +28,6 @@ see http://en.wikipedia.org/wiki/Mersenne_twister for an explanation of this alg
|
||||
#include <stdio.h>
|
||||
#include "random.h"
|
||||
|
||||
#ifdef TEST
|
||||
#include "common.h"
|
||||
#include "log.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Period parameters */
|
||||
#define M 397
|
||||
@ -80,6 +75,8 @@ void av_random_generate_untempered_numbers(AVRandomState *state)
|
||||
}
|
||||
|
||||
#ifdef TEST
|
||||
#include "common.h"
|
||||
#include "log.h"
|
||||
void main(void)
|
||||
{
|
||||
int x=0;
|
||||
|
Loading…
Reference in New Issue
Block a user