diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:36:59 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:36:59 +0000 |
commit | 965363f81aa7f9fd61935e9e4b766c168f243227 (patch) | |
tree | 0fbdc3d9c616d1ed120dfbd14e514a7ca0e9060a /libavcodec/dsputil.c | |
parent | 4f602a041522c7fc809dcc5192489cc9febb19e7 (diff) | |
download | ffmpeg-965363f81aa7f9fd61935e9e4b766c168f243227.tar.gz |
Move some dsp func prototypes to dsputil.h; they are defined in dsputil.c
Originally committed as revision 22264 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index f81f376cdc..8513e86329 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -44,14 +44,6 @@ /* snow.c */ void ff_spatial_dwt(int *buffer, int width, int height, int stride, int type, int decomposition_count); -/* eaidct.c */ -void ff_ea_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block); - -/* binkidct.c */ -void ff_bink_idct_c (DCTELEM *block); -void ff_bink_idct_add_c(uint8_t *dest, int linesize, DCTELEM *block); -void ff_bink_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block); - uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP] = {0, }; uint32_t ff_squareTbl[512] = {0, }; |