Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2002-10-03 17:41:33 +0400
committerFabrice Bellard <fabrice@bellard.org>2002-10-03 17:41:33 +0400
commit9bf71516b1dca438ebfad1a7cb00fa9a06e42c54 (patch)
treecb4bba620960341957233e4b53a066acadb3a0b0 /libavcodec/simple_idct.h
parent3a3d3a42c29424b2ec5a8b3c2b0a2017fbddb9ad (diff)
first version of IDCT248 for DV decoding support
Originally committed as revision 994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/simple_idct.h')
-rw-r--r--libavcodec/simple_idct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/simple_idct.h b/libavcodec/simple_idct.h
index 41df4c6faa..6c6b4f0115 100644
--- a/libavcodec/simple_idct.h
+++ b/libavcodec/simple_idct.h
@@ -24,3 +24,5 @@ void ff_simple_idct_mmx(short *block);
void ff_simple_idct_add_mmx(UINT8 *dest, int line_size, INT16 *block);
void ff_simple_idct_put_mmx(UINT8 *dest, int line_size, INT16 *block);
void simple_idct(short *block);
+
+void simple_idct248_put(UINT8 *dest, int line_size, INT16 *block);