--- decoder.h 2003/11/30 16:13:15 1.13.2.7 +++ decoder.h 2004/03/03 13:18:08 1.13.2.10 @@ -19,7 +19,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: decoder.h,v 1.13.2.7 2003/11/30 16:13:15 edgomez Exp $ + * $Id: decoder.h,v 1.13.2.10 2004/03/03 13:18:08 syskin Exp $ * ****************************************************************************/ @@ -30,6 +30,7 @@ #include "portab.h" #include "global.h" #include "image/image.h" +#include "image/postprocessing.h" /***************************************************************************** * Structures @@ -83,6 +84,7 @@ uint32_t quant_type; uint16_t *mpeg_quant_matrices; int32_t quarterpel; + int32_t cartoon_mode; int complexity_estimation_disable; ESTIMATION estimation; @@ -119,6 +121,9 @@ IMAGE tmp; /* bframe interpolation, and post processing tmp buffer */ IMAGE qtmp; /* quarter pel tmp buffer */ + /* postprocessing */ + XVID_POSTPROC postproc; + /* macroblock */ uint32_t mb_width; @@ -152,6 +157,8 @@ NEW_GMC_DATA new_gmc_data; xvid_image_t* out_frm; /* This is used for slice rendering */ + + int * qscale; /* quantization table for decoder's stats */ } DECODER;