--- trunk/xvidcore/src/utils/ratecontrol.c 2002/09/05 21:23:03 423 +++ trunk/xvidcore/src/utils/ratecontrol.c 2002/09/26 00:33:00 542 @@ -3,7 +3,7 @@ * XVID MPEG-4 VIDEO CODEC * - Rate Controler module - * - * Copyright(C) 2002 Michael Militzer + * Copyright(C) 2002 Benjamin Lambert * * This program is an implementation of a part of one or more MPEG-4 * Video tools as specified in ISO/IEC 14496-2 standard. Those intending @@ -28,7 +28,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: ratecontrol.c,v 1.14 2002-09-05 21:23:03 edgomez Exp $ + * $Id: ratecontrol.c,v 1.17 2002-09-26 00:33:00 h Exp $ * ****************************************************************************/ @@ -132,8 +132,9 @@ (double) rate_control->framerate) * (double) rate_control->frames)); - DEBUGCBR((int32_t) (rate_control->frames - 1), rate_control->rtn_quant, - (int32_t) deviation); + DPRINTF(DPRINTF_DEBUG, "CBR: frame: %i, quant: %i, deviation: %i\n", + (int32_t) (rate_control->frames - 1), rate_control->rtn_quant, + (int32_t) deviation); if (rate_control->rtn_quant >= 2) { averaging_period = (double) rate_control->averaging_period;