Remove useless "extern" in function declarations.
[mplayer/glamo.git] / libmpcodecs / native / rtjpegn.h
blob4cb20c586de927e4a5623bea1c98b1ed4f8d5d18
1 /*
2 RTjpeg (C) Justin Schoeman 1998 (justin@suntiger.ee.up.ac.za)
4 With modifications by:
5 (c) 1998, 1999 by Joerg Walter <trouble@moes.pmnet.uni-oldenburg.de>
6 and
7 (c) 1999 by Wim Taymans <wim.taymans@tvd.be>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #ifndef MPLAYER_RTJPEGN_H
25 #define MPLAYER_RTJPEGN_H
27 #include <stdint.h>
29 #define __u8 uint8_t
30 #define __u16 uint16_t
31 #define __u32 uint32_t
32 #define __u64 uint64_t
33 #define __s8 int8_t
34 #define __s16 int16_t
35 #define __s32 int32_t
36 #define __s64 int64_t
38 void RTjpeg_init_Q(__u8 Q);
39 void RTjpeg_init_compress(__u32 *buf, int width, int height, __u8 Q);
40 void RTjpeg_init_decompress(__u32 *buf, int width, int height);
41 int RTjpeg_compressYUV420(__s8 *sp, unsigned char *bp);
42 int RTjpeg_compressYUV422(__s8 *sp, unsigned char *bp);
43 void RTjpeg_decompressYUV420(__s8 *sp, __u8 *bp);
44 void RTjpeg_decompressYUV422(__s8 *sp, __u8 *bp);
45 int RTjpeg_compress8(__s8 *sp, unsigned char *bp);
46 void RTjpeg_decompress8(__s8 *sp, __u8 *bp);
48 void RTjpeg_init_mcompress(void);
49 int RTjpeg_mcompressYUV420(__s8 *sp, unsigned char *bp, __u16 lmask, __u16 cmask);
50 int RTjpeg_mcompressYUV422(__s8 *sp, unsigned char *bp, __u16 lmask, __u16 cmask);
51 int RTjpeg_mcompress8(__s8 *sp, unsigned char *bp, __u16 lmask);
52 void RTjpeg_set_test(int i);
54 void RTjpeg_yuv420rgb(__u8 *buf, __u8 *rgb, int stride);
55 void RTjpeg_yuv422rgb(__u8 *buf, __u8 *rgb, int stride);
56 void RTjpeg_yuvrgb8(__u8 *buf, __u8 *rgb, int stride);
57 void RTjpeg_yuvrgb16(__u8 *buf, __u8 *rgb, int stride);
58 void RTjpeg_yuvrgb24(__u8 *buf, __u8 *rgb, int stride);
59 void RTjpeg_yuvrgb32(__u8 *buf, __u8 *rgb, int stride);
61 #endif /* MPLAYER_RTJPEGN_H */