--- postprocessing.h 2003/12/17 17:07:38 1.1.4.3 +++ postprocessing.h 2004/04/18 07:55:11 1.5 @@ -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: postprocessing.h,v 1.1.4.3 2003/12/17 17:07:38 Isibaar Exp $ + * $Id: postprocessing.h,v 1.5 2004/04/18 07:55:11 syskin Exp $ * ****************************************************************************/ @@ -27,21 +27,53 @@ #define _POSTPROCESSING_H_ #include - #include "../portab.h" +/* Filtering thresholds */ + +#define THR1 2 +#define THR2 6 + +#define MAX_NOISE 4096 +#define MAX_SHIFT 1024 +#define MAX_RES (MAX_NOISE - MAX_SHIFT) + +#define DERING_STRENGTH 2 + +typedef struct { + int8_t xvid_thresh_tbl[511]; + uint8_t xvid_abs_tbl[511]; + int8_t xvid_noise1[MAX_NOISE * sizeof(int8_t)]; + int8_t xvid_noise2[MAX_NOISE * sizeof(int8_t)]; + int8_t *xvid_prev_shift[MAX_RES][6]; + int prev_quant; +} XVID_POSTPROC; + void -image_postproc(IMAGE * img, int edged_width, +image_postproc(XVID_POSTPROC *tbls, IMAGE * img, int edged_width, const MACROBLOCK * mbs, int mb_width, int mb_height, int mb_stride, - int flags, int frame_num); + int flags, int brightness, int frame_num, int bvop); + +void deblock8x8_h(XVID_POSTPROC *tbls, uint8_t *img, int stride, int quant, int dering); +void deblock8x8_v(XVID_POSTPROC *tbls, uint8_t *img, int stride, int quant, int dering); + +void init_postproc(XVID_POSTPROC *tbls); +void init_noise(XVID_POSTPROC *tbls); +void init_deblock(XVID_POSTPROC *tbls); + +void add_noise(XVID_POSTPROC * tbls, uint8_t *dst, uint8_t *src, int stride, int width, int height, int shiftptr, int quant); + -void deblock8x8_h(uint8_t *img, int stride, int quant); -void deblock8x8_v(uint8_t *img, int stride, int quant); +typedef void (IMAGEBRIGHTNESS) (uint8_t * dst, + int stride, + int width, + int height, + int offset); +typedef IMAGEBRIGHTNESS *IMAGEBRIGHTNESS_PTR; -void init_postproc(void); -void init_noise(void); -void init_deblock(void); +extern IMAGEBRIGHTNESS_PTR image_brightness; -void add_noise(uint8_t *dst, uint8_t *src, int stride, int width, int height, int shiftptr); +IMAGEBRIGHTNESS image_brightness_c; +IMAGEBRIGHTNESS image_brightness_mmx; #endif