--- decoder.c 2003/02/19 21:59:30 1.49 +++ decoder.c 2003/05/03 23:23:38 1.49.4.1 @@ -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.c,v 1.49 2003/02/19 21:59:30 edgomez Exp $ + * $Id: decoder.c,v 1.49.4.1 2003/05/03 23:23:38 Isibaar Exp $ * ****************************************************************************/ @@ -57,6 +57,7 @@ #include "image/image.h" #include "image/colorspace.h" #include "utils/mem_align.h" +#include "image/postprocessing.h" int decoder_resize(DECODER * dec) @@ -1723,9 +1724,9 @@ { /* note: image is stored to tmp */ image_copy(&dec->tmp, img, dec->edged_width, dec->height); - image_deblock_rrv(&dec->tmp, dec->edged_width, - mbs, dec->mb_width, dec->mb_height, dec->mb_width, - 8, frame->general); + image_deblock(&dec->tmp, dec->edged_width, + mbs, dec->mb_width, dec->mb_height, dec->mb_width, + frame->general); img = &dec->tmp; }