comparison dsputil.c @ 11375:84963c795459 libavcodec

Move some prototypes from dsputil.c to reasonable header files
author mru
date Sat, 06 Mar 2010 22:36:45 +0000
parents 98970e51365a
children 0b220468ba0d
comparison
equal deleted inserted replaced
11374:1cd8731bbe7f 11375:84963c795459
34 #include "faanidct.h" 34 #include "faanidct.h"
35 #include "mathops.h" 35 #include "mathops.h"
36 #include "snow.h" 36 #include "snow.h"
37 #include "mpegvideo.h" 37 #include "mpegvideo.h"
38 #include "config.h" 38 #include "config.h"
39 #include "lpc.h"
40 #include "ac3dec.h"
41 #include "vorbis.h"
42 #include "png.h"
39 43
40 /* snow.c */ 44 /* snow.c */
41 void ff_spatial_dwt(int *buffer, int width, int height, int stride, int type, int decomposition_count); 45 void ff_spatial_dwt(int *buffer, int width, int height, int stride, int type, int decomposition_count);
42
43 /* vorbis.c */
44 void vorbis_inverse_coupling(float *mag, float *ang, int blocksize);
45
46 /* ac3dec.c */
47 void ff_ac3_downmix_c(float (*samples)[256], float (*matrix)[2], int out_ch, int in_ch, int len);
48
49 /* lpc.c */
50 void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag, double *autoc);
51
52 /* pngdec.c */
53 void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp);
54 46
55 /* eaidct.c */ 47 /* eaidct.c */
56 void ff_ea_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block); 48 void ff_ea_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block);
57 49
58 /* binkidct.c */ 50 /* binkidct.c */