diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-06-04 12:58:40 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-06-04 12:58:40 +0000 |
commit | 03c94ede9365c22855c4f63941a13d0a4574f7a4 (patch) | |
tree | 1621e197b4d6e7d37c2acabb5b748648407b5bc3 /libavcodec/dsputil.h | |
parent | c3aea5c424052ea4972922b68b1bc35de276fc30 (diff) | |
download | ffmpeg-03c94ede9365c22855c4f63941a13d0a4574f7a4.tar.gz |
avoid name clash with libjpeg - added missing externs
Originally committed as revision 660 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 64559c7422..062b510ab0 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -26,13 +26,13 @@ /* dct code */ typedef short DCTELEM; -void jpeg_fdct_ifast (DCTELEM *data); +void fdct_ifast (DCTELEM *data); void j_rev_dct (DCTELEM *data); void fdct_mmx(DCTELEM *block); -void (*av_fdct)(DCTELEM *block); +extern void (*av_fdct)(DCTELEM *block); /* encoding scans */ extern UINT8 ff_alternate_horizontal_scan[64]; |