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