--- ratecontrol.c 2002/09/05 21:23:03 1.14 +++ ratecontrol.c 2002/09/22 19:35:38 1.16 @@ -3,7 +3,9 @@ * XVID MPEG-4 VIDEO CODEC * - Rate Controler module - * - * Copyright(C) 2002 Michael Militzer + * Copyright(C) 2002 Michael Militzer + * Copyright(C) 2002 Daniel Smith + * Copyright(C) 2002 Dirk Knop * * 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 +30,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.16 2002/09/22 19:35:38 edgomez Exp $ * ****************************************************************************/ @@ -132,8 +134,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;