annotate libmpcodecs/native/rtjpegn.h @ 26761:af8f8254a990

Add missing MPLAYER_ prefix to multiple inclusion guards.
author diego
date Sat, 17 May 2008 10:12:07 +0000
parents 5f526e8e3988
children ebb5a377e3cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3802
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
1 /*
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
2 RTjpeg (C) Justin Schoeman 1998 (justin@suntiger.ee.up.ac.za)
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
3
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
4 With modifications by:
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
5 (c) 1998, 1999 by Joerg Walter <trouble@moes.pmnet.uni-oldenburg.de>
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
6 and
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
7 (c) 1999 by Wim Taymans <wim.taymans@tvd.be>
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
8
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
9 This program is free software; you can redistribute it and/or modify
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
10 it under the terms of the GNU General Public License as published by
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
11 the Free Software Foundation; either version 2 of the License, or
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
12 (at your option) any later version.
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
13
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
14 This program is distributed in the hope that it will be useful,
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
17 GNU General Public License for more details.
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
18
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
20 along with this program; if not, write to the Free Software
21977
cea0eb833758 Fix FSF address and otherwise broken license headers.
diego
parents: 16653
diff changeset
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
3802
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
22 */
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
23
26761
af8f8254a990 Add missing MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26304
diff changeset
24 #ifndef MPLAYER_RTJPEGN_H
af8f8254a990 Add missing MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26304
diff changeset
25 #define MPLAYER_RTJPEGN_H
25867
58ff364dc851 Add multiple inclusion guards.
diego
parents: 21977
diff changeset
26
26147
41652035483c Add necessary header #includes to fix 'make checkheaders'.
diego
parents: 25867
diff changeset
27 #include <stdint.h>
41652035483c Add necessary header #includes to fix 'make checkheaders'.
diego
parents: 25867
diff changeset
28
16653
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
29 #define __u8 uint8_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
30 #define __u16 uint16_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
31 #define __u32 uint32_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
32 #define __u64 uint64_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
33 #define __s8 int8_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
34 #define __s16 int16_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
35 #define __s32 int32_t
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
36 #define __s64 int64_t
3802
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
37
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
38 extern void RTjpeg_init_Q(__u8 Q);
16653
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
39 extern void RTjpeg_init_compress(__u32 *buf, int width, int height, __u8 Q);
27b0d49988b2 Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32
reimar
parents: 12687
diff changeset
40 extern void RTjpeg_init_decompress(__u32 *buf, int width, int height);
3802
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
41 extern int RTjpeg_compressYUV420(__s8 *sp, unsigned char *bp);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
42 extern int RTjpeg_compressYUV422(__s8 *sp, unsigned char *bp);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
43 extern void RTjpeg_decompressYUV420(__s8 *sp, __u8 *bp);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
44 extern void RTjpeg_decompressYUV422(__s8 *sp, __u8 *bp);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
45 extern int RTjpeg_compress8(__s8 *sp, unsigned char *bp);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
46 extern void RTjpeg_decompress8(__s8 *sp, __u8 *bp);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
47
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
48 extern void RTjpeg_init_mcompress(void);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
49 extern int RTjpeg_mcompressYUV420(__s8 *sp, unsigned char *bp, __u16 lmask, __u16 cmask);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
50 extern int RTjpeg_mcompressYUV422(__s8 *sp, unsigned char *bp, __u16 lmask, __u16 cmask);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
51 extern int RTjpeg_mcompress8(__s8 *sp, unsigned char *bp, __u16 lmask);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
52 extern void RTjpeg_set_test(int i);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
53
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
54 extern void RTjpeg_yuv420rgb(__u8 *buf, __u8 *rgb, int stride);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
55 extern void RTjpeg_yuv422rgb(__u8 *buf, __u8 *rgb, int stride);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
56 extern void RTjpeg_yuvrgb8(__u8 *buf, __u8 *rgb, int stride);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
57 extern void RTjpeg_yuvrgb16(__u8 *buf, __u8 *rgb, int stride);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
58 extern void RTjpeg_yuvrgb24(__u8 *buf, __u8 *rgb, int stride);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
59 extern void RTjpeg_yuvrgb32(__u8 *buf, __u8 *rgb, int stride);
bf37d5cd3e6e used by NuppelVideo decoder
alex
parents:
diff changeset
60
26761
af8f8254a990 Add missing MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26304
diff changeset
61 #endif /* MPLAYER_RTJPEGN_H */