1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-06-14 22:15:12 +02:00

Consistently use TEST as the preprocessor condition to enable test code.

Originally committed as revision 11581 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2008-01-20 23:53:51 +00:00
parent 1ace441909
commit 07e4e3ea8b
4 changed files with 8 additions and 8 deletions

View File

@ -109,7 +109,7 @@ int ff_rac_terminate(RangeCoder *c){
return c->bytestream - c->bytestream_start;
}
#if 0 //selftest
#ifdef TEST
#define SIZE 10240
int main(void){
RangeCoder c;
@ -148,4 +148,4 @@ STOP_TIMER("get_rac")
return 0;
}
#endif
#endif /* TEST */