--- trunk/xvidcore/src/bitstream/bitstream.c 2002/09/19 19:25:06 487 +++ trunk/xvidcore/src/bitstream/bitstream.c 2002/09/23 10:59:10 529 @@ -3,7 +3,7 @@ * XVID MPEG-4 VIDEO CODEC * - Bitstream reader/writer functions - * - * Copyright (C) 2001-2002 - Peter Ross + * Copyright (C) 2001-2002 - Peter Ross * * 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: bitstream.c,v 1.31 2002-09-19 19:25:06 edgomez Exp $ + * $Id: bitstream.c,v 1.34 2002-09-23 10:59:10 suxen_drol Exp $ * ****************************************************************************/ @@ -44,7 +44,7 @@ log2bin(uint32_t value) { /* Changed by Chenm001 */ -#ifndef WIN32 +#if !defined(_MSC_VER) int n = 0; while (value) { @@ -417,7 +417,7 @@ if (vol_ver_id != 1) { - DEBUG("QUARTERPEL BITSTREAM"); + DPRINTF(DPRINTF_DEBUG, "QUARTERPEL BITSTREAM"); dec->quarterpel = BitstreamGetBit(bs); // quarter_sample } else