From e97efffb9fed2148c8332ffca17585a817974b10 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 5 Aug 2002 16:20:11 +0000 Subject: [PATCH] fix for compilation when DEBUG is disabled Original commit message from CVS: fix for compilation when DEBUG is disabled --- gst/mpeg1sys/buffer.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gst/mpeg1sys/buffer.c b/gst/mpeg1sys/buffer.c index 591d3ba..badf674 100644 --- a/gst/mpeg1sys/buffer.c +++ b/gst/mpeg1sys/buffer.c @@ -19,7 +19,6 @@ #include -/*#define DEBUG_ENABLED */ #include #include @@ -58,13 +57,16 @@ static double picture_rates [16] = 0, 0 }; -/* deined but not used +/* defined but not used static double ratio [16] = { 0., 1., 0.6735, 0.7031, 0.7615, 0.8055, 0.8437, 0.8935, 0.9157, 0.9815, 1.0255, 1.0695, 1.0950, 1.1575, 1.2015, 0.}; */ + +#ifdef GST_DEBUG_ENABLED static char picture_types [4][3] = { "I", "P", "B", "D" }; +#endif static int bitrate_index[2][3][16] = { { {0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448, }, -- 2.7.4