summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-01-20 23:53:51 +0000
committerDiego Biurrun <diego@biurrun.de>2008-01-20 23:53:51 +0000
commit07e4e3ea8bcccce9bba6b07d9cb8f9e896a58548 (patch)
tree9e5e081df651a9937daa09ac848e2b5a99827bd2 /libavcodec/cabac.c
parent1ace441909786f7ffbfc00b511c48e131f7ba8d0 (diff)
Consistently use TEST as the preprocessor condition to enable test code.
Originally committed as revision 11581 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.c')
-rw-r--r--libavcodec/cabac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cabac.c b/libavcodec/cabac.c
index 1e0d9e592a..e12533818f 100644
--- a/libavcodec/cabac.c
+++ b/libavcodec/cabac.c
@@ -178,7 +178,7 @@ void ff_init_cabac_states(CABACContext *c){
}
}
-#if 0 //selftest
+#ifdef TEST
#undef random
#define SIZE 10240
@@ -262,4 +262,4 @@ STOP_TIMER("get_cabac_ueg")
return 0;
}
-#endif
+#endif /* TEST */