comparison dsputil.c @ 474:11dbd00682fc libavcodec

avoid name clash with libjpeg - added missing externs
author bellard
date Tue, 04 Jun 2002 12:58:40 +0000
parents 1e23eae32087
children a7cbee351b55
comparison
equal deleted inserted replaced
473:1ca0876f99bc 474:11dbd00682fc
21 #include "avcodec.h" 21 #include "avcodec.h"
22 #include "dsputil.h" 22 #include "dsputil.h"
23 #include "simple_idct.h" 23 #include "simple_idct.h"
24 24
25 void (*ff_idct)(DCTELEM *block); 25 void (*ff_idct)(DCTELEM *block);
26 void (*av_fdct)(DCTELEM *block);
26 void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size); 27 void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size);
27 void (*diff_pixels)(DCTELEM *block, const UINT8 *s1, const UINT8 *s2, int stride); 28 void (*diff_pixels)(DCTELEM *block, const UINT8 *s1, const UINT8 *s2, int stride);
28 void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); 29 void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
29 void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); 30 void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
30 void (*gmc1)(UINT8 *dst, UINT8 *src, int srcStride, int h, int x16, int y16, int rounder); 31 void (*gmc1)(UINT8 *dst, UINT8 *src, int srcStride, int h, int x16, int y16, int rounder);
1276 pix_abs16x16_xy2 = pix_abs16x16_xy2_c; 1277 pix_abs16x16_xy2 = pix_abs16x16_xy2_c;
1277 pix_abs8x8 = pix_abs8x8_c; 1278 pix_abs8x8 = pix_abs8x8_c;
1278 pix_abs8x8_x2 = pix_abs8x8_x2_c; 1279 pix_abs8x8_x2 = pix_abs8x8_x2_c;
1279 pix_abs8x8_y2 = pix_abs8x8_y2_c; 1280 pix_abs8x8_y2 = pix_abs8x8_y2_c;
1280 pix_abs8x8_xy2 = pix_abs8x8_xy2_c; 1281 pix_abs8x8_xy2 = pix_abs8x8_xy2_c;
1281 av_fdct = jpeg_fdct_ifast; 1282 av_fdct = fdct_ifast;
1282 1283
1283 use_permuted_idct = 1; 1284 use_permuted_idct = 1;
1284 1285
1285 #ifdef HAVE_MMX 1286 #ifdef HAVE_MMX
1286 dsputil_init_mmx(); 1287 dsputil_init_mmx();