1
|
1 /*
|
|
2 * idct_mlib.c
|
36
|
3 * Copyright (C) 1999-2001 Håkan Hjort <d95hjort@dtek.chalmers.se>
|
1
|
4 *
|
|
5 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
|
|
6 *
|
|
7 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
8 * it under the terms of the GNU General Public License as published by
|
|
9 * the Free Software Foundation; either version 2 of the License, or
|
|
10 * (at your option) any later version.
|
|
11 *
|
|
12 * mpeg2dec is distributed in the hope that it will be useful,
|
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 * GNU General Public License for more details.
|
|
16 *
|
|
17 * You should have received a copy of the GNU General Public License
|
|
18 * along with this program; if not, write to the Free Software
|
|
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
20 */
|
|
21
|
|
22 #include "config.h"
|
|
23
|
|
24 #ifdef LIBMPEG2_MLIB
|
|
25
|
|
26 #include <inttypes.h>
|
|
27 #include <mlib_types.h>
|
|
28 #include <mlib_status.h>
|
|
29 #include <mlib_sys.h>
|
|
30 #include <mlib_video.h>
|
|
31
|
|
32 #include "mpeg2_internal.h"
|
|
33
|
|
34 void idct_block_copy_mlib (int16_t * block, uint8_t * dest, int stride)
|
|
35 {
|
|
36 mlib_VideoIDCT8x8_U8_S16 (dest, block, stride);
|
|
37 }
|
|
38
|
|
39 void idct_block_add_mlib (int16_t * block, uint8_t * dest, int stride)
|
|
40 {
|
36
|
41 /* Should we use mlib_VideoIDCT_IEEE_S16_S16 here ?? */
|
|
42 /* it's ~30% slower. */
|
1
|
43 mlib_VideoIDCT8x8_S16_S16 (block, block);
|
|
44 mlib_VideoAddBlock_U8_S16 (dest, block, stride);
|
|
45 }
|
|
46
|
|
47 #endif
|