summaryrefslogtreecommitdiff
path: root/libavcodec/simple_idct.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2002-06-05 18:46:25 +0000
committerFabrice Bellard <fabrice@bellard.org>2002-06-05 18:46:25 +0000
commitd36a2466753fc18f3143837a56aa7123f8991f33 (patch)
treed5e76334e4ef056dbf4aef02152c9d8707a35e65 /libavcodec/simple_idct.h
parentad31c904b2369bd883f96cacfac9c545585b6518 (diff)
added inlined put/add functions
Originally committed as revision 671 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/simple_idct.h')
-rw-r--r--libavcodec/simple_idct.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/simple_idct.h b/libavcodec/simple_idct.h
index 5c7da0207d..233a7b8412 100644
--- a/libavcodec/simple_idct.h
+++ b/libavcodec/simple_idct.h
@@ -18,5 +18,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-void simple_idct(short *block);
+void simple_idct_put(UINT8 *dest, int line_size, INT16 *block);
+void simple_idct_add(UINT8 *dest, int line_size, INT16 *block);
void simple_idct_mmx(short *block);