annotate libvo/img_format.h @ 2791:8ef2ab5cd47f

added some macros for rgb/bgr
author alex
date Fri, 09 Nov 2001 23:49:03 +0000
parents ad3a6bcad1d7
children 1632d6824a68
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
408
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
1
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
2 #ifndef __IMG_FORMAT_H
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
3 #define __IMG_FORMAT_H
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
4
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
5 /* RGB/BGR Formats */
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
6
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
7 #define IMGFMT_RGB_MASK 0xFFFFFF00
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
8 #define IMGFMT_RGB (('R'<<24)|('G'<<16)|('B'<<8))
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
9 #define IMGFMT_RGB8 (IMGFMT_RGB|8)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
10 #define IMGFMT_RGB15 (IMGFMT_RGB|15)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
11 #define IMGFMT_RGB16 (IMGFMT_RGB|16)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
12 #define IMGFMT_RGB24 (IMGFMT_RGB|24)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
13 #define IMGFMT_RGB32 (IMGFMT_RGB|32)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
14
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
15 #define IMGFMT_BGR_MASK 0xFFFFFF00
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
16 #define IMGFMT_BGR (('B'<<24)|('G'<<16)|('R'<<8))
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
17 #define IMGFMT_BGR8 (IMGFMT_BGR|8)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
18 #define IMGFMT_BGR15 (IMGFMT_BGR|15)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
19 #define IMGFMT_BGR16 (IMGFMT_BGR|16)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
20 #define IMGFMT_BGR24 (IMGFMT_BGR|24)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
21 #define IMGFMT_BGR32 (IMGFMT_BGR|32)
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
22
2791
8ef2ab5cd47f added some macros for rgb/bgr
alex
parents: 2654
diff changeset
23 #define IMGFMT_IS_RGB(fmt) ((fmt&IMGFMT_RGB_MASK)==IMGFMT_RGB)
8ef2ab5cd47f added some macros for rgb/bgr
alex
parents: 2654
diff changeset
24 #define IMGFMT_IS_BGR(fmt) ((fmt&IMGFMT_BGR_MASK)==IMGFMT_BGR)
8ef2ab5cd47f added some macros for rgb/bgr
alex
parents: 2654
diff changeset
25
8ef2ab5cd47f added some macros for rgb/bgr
alex
parents: 2654
diff changeset
26 #define IMGFMT_RGB_DEPTH(fmt) (fmt&~IMGFMT_RGB)
8ef2ab5cd47f added some macros for rgb/bgr
alex
parents: 2654
diff changeset
27 #define IMGFMT_BGR_DEPTH(fmt) (fmt&~IMGFMT_BGR)
8ef2ab5cd47f added some macros for rgb/bgr
alex
parents: 2654
diff changeset
28
408
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
29
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
30 /* Planar YUV Formats */
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
31
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
32 #define IMGFMT_YVU9 0x39555659
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
33 #define IMGFMT_IF09 0x39304649
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
34 #define IMGFMT_YV12 0x32315659
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
35 #define IMGFMT_I420 0x30323449
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
36 #define IMGFMT_IYUV 0x56555949
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
37 #define IMGFMT_CLPL 0x4C504C43
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
38
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
39 /* Packed YUV Formats */
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
40
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
41 #define IMGFMT_IYU1 0x31555949
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
42 #define IMGFMT_IYU2 0x32555949
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
43 #define IMGFMT_UYVY 0x59565955
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
44 #define IMGFMT_UYNV 0x564E5955
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
45 #define IMGFMT_cyuv 0x76757963
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
46 #define IMGFMT_YUY2 0x32595559
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
47 #define IMGFMT_YUNV 0x564E5559
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
48 #define IMGFMT_YVYU 0x55595659
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
49 #define IMGFMT_Y41P 0x50313459
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
50 #define IMGFMT_Y211 0x31313259
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
51 #define IMGFMT_Y41T 0x54313459
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
52 #define IMGFMT_Y42T 0x54323459
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
53 #define IMGFMT_V422 0x32323456
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
54 #define IMGFMT_V655 0x35353656
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
55 #define IMGFMT_CLJR 0x524A4C43
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
56 #define IMGFMT_YUVP 0x50565559
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
57 #define IMGFMT_UYVP 0x50565955
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
58
1871
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
59 /* Compressed Formats */
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
60 #define IMGFMT_MPEGPES (('M'<<24)|('P'<<16)|('E'<<8)|('S'))
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
61
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
62 typedef struct {
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
63 void* data;
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
64 int size;
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
65 int id; // stream id. usually 0x1E0
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
66 int timestamp; // pts, 90000 Hz counter based
cb5dde69354b Mpeg PES added
arpi
parents: 408
diff changeset
67 } vo_mpegpes_t;
408
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
68
2654
ad3a6bcad1d7 vo_format_name prototype added
alex
parents: 1871
diff changeset
69 char *vo_format_name(int format);
ad3a6bcad1d7 vo_format_name prototype added
alex
parents: 1871
diff changeset
70
408
b61c5c4484f8 - applied overlay patch by Jens H
atmosfear
parents:
diff changeset
71 #endif