--- divx4.c 2002/07/21 03:49:47 1.16 +++ divx4.c 2002/09/21 03:07:56 1.19 @@ -3,6 +3,8 @@ * XVID MPEG-4 VIDEO CODEC * - OpenDivx API wrapper - * + * 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 * to use this software module in hardware or software products are @@ -28,20 +30,6 @@ * *************************************************************************/ -/************************************************************************** - * - * History: - * - * 24.02.2002 #def BFRAMES compatibility - * 26.02.2001 fixed dec_csp bugs - * 26.12.2001 xvid_init() support - * 22.12.2001 removed some compiler warnings - * 16.12.2001 inital version; (c)2001 peter ross - * - * $Id: divx4.c,v 1.16 2002/07/21 03:49:47 suxen_drol Exp $ - * - *************************************************************************/ - #include #include #include @@ -370,13 +358,6 @@ xparam.max_quantizer = eparam->max_quantizer; xparam.max_key_interval = eparam->max_key_interval; -#ifdef BFRAMES - xparam.global = 0; - xparam.max_bframes = -1; /* use "original" IP-frame encoder */ - xparam.bquant_ratio = 200; - xparam.frame_drop_ratio = 0; /* dont drop frames */ -#endif - /* Create the encoder session */ xerr = encoder_create(&xparam);