summaryrefslogtreecommitdiffstats
path: root/libmpeg2/idct_mlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpeg2/idct_mlib.c')
-rw-r--r--libmpeg2/idct_mlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpeg2/idct_mlib.c b/libmpeg2/idct_mlib.c
index 055ee75fa6..876ab574a4 100644
--- a/libmpeg2/idct_mlib.c
+++ b/libmpeg2/idct_mlib.c
@@ -1,6 +1,6 @@
/*
* idct_mlib.c
- * Copyright (C) 1999 Håkan Hjort <d95hjort@dtek.chalmers.se>
+ * Copyright (C) 1999-2001 Håkan Hjort <d95hjort@dtek.chalmers.se>
*
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
*
@@ -38,8 +38,8 @@ void idct_block_copy_mlib (int16_t * block, uint8_t * dest, int stride)
void idct_block_add_mlib (int16_t * block, uint8_t * dest, int stride)
{
- // Should we use mlib_VideoIDCT_IEEE_S16_S16 here ??
- // it's ~30% slower.
+ /* Should we use mlib_VideoIDCT_IEEE_S16_S16 here ?? */
+ /* it's ~30% slower. */
mlib_VideoIDCT8x8_S16_S16 (block, block);
mlib_VideoAddBlock_U8_S16 (dest, block, stride);
}