Mercurial > mplayer.hg
annotate libmpcodecs/mp_image.h @ 11639:482475cf911a
compile fix
author | wight |
---|---|
date | Fri, 12 Dec 2003 16:47:59 +0000 |
parents | 229079491864 |
children | bcf9862f61b2 |
rev | line source |
---|---|
4933 | 1 #ifndef __MP_IMAGE_H |
2 #define __MP_IMAGE_H 1 | |
4185 | 3 |
6875 | 4 //--------- codec's requirements (filled by the codec/vf) --------- |
5 | |
6 //--- buffer content restrictions: | |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
7 // set if buffer content shouldn't be modified: |
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
8 #define MP_IMGFLAG_PRESERVE 0x01 |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
9 // set if buffer content will be READ for next frame's MC: (I/P mpeg frames) |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
10 #define MP_IMGFLAG_READABLE 0x02 |
6875 | 11 |
12 //--- buffer width/stride/plane restrictions: (used for direct rendering) | |
13 // stride _have_to_ be aligned to MB boundary: [for DR restrictions] | |
14 #define MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE 0x4 | |
15 // stride should be aligned to MB boundary: [for buffer allocation] | |
16 #define MP_IMGFLAG_PREFER_ALIGNED_STRIDE 0x8 | |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
17 // codec accept any stride (>=width): |
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
18 #define MP_IMGFLAG_ACCEPT_STRIDE 0x10 |
6875 | 19 // codec accept any width (width*bpp=stride -> stride%bpp==0) (>=width): |
4962 | 20 #define MP_IMGFLAG_ACCEPT_WIDTH 0x20 |
6875 | 21 //--- for planar formats only: |
22 // uses only stride[0], and stride[1]=stride[2]=stride[0]>>mpi->chroma_x_shift | |
23 #define MP_IMGFLAG_COMMON_STRIDE 0x40 | |
24 // uses only planes[0], and calculates planes[1,2] from width,height,imgfmt | |
25 #define MP_IMGFLAG_COMMON_PLANE 0x80 | |
4185 | 26 |
6875 | 27 #define MP_IMGFLAGMASK_RESTRICTIONS 0xFF |
28 | |
29 //--------- color info (filled by mp_image_setfmt() ) ----------- | |
4185 | 30 // set if number of planes > 1 |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
31 #define MP_IMGFLAG_PLANAR 0x100 |
4185 | 32 // set if it's YUV colorspace |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
33 #define MP_IMGFLAG_YUV 0x200 |
6875 | 34 // set if it's swapped (BGR or YVU) plane/byteorder |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
35 #define MP_IMGFLAG_SWAPPED 0x400 |
6478 | 36 // using palette for RGB data |
6875 | 37 #define MP_IMGFLAG_RGB_PALETTE 0x800 |
38 | |
39 #define MP_IMGFLAGMASK_COLORS 0xF00 | |
40 | |
41 // codec uses drawing/rendering callbacks (draw_slice()-like thing, DR method 2) | |
42 // [the codec will set this flag if it supports callbacks, and the vo _may_ | |
43 // clear it in get_image() if draw_slice() not implemented] | |
44 #define MP_IMGFLAG_DRAW_CALLBACK 0x1000 | |
45 // set if it's in video buffer/memory: [set by vo/vf's get_image() !!!] | |
46 #define MP_IMGFLAG_DIRECT 0x2000 | |
47 // set if buffer is allocated (used in destination images): | |
48 #define MP_IMGFLAG_ALLOCATED 0x4000 | |
49 | |
50 // buffer type was printed (do NOT set this flag - it's for INTERNAL USE!!!) | |
51 #define MP_IMGFLAG_TYPE_DISPLAYED 0x8000 | |
4185 | 52 |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
53 // codec doesn't support any form of direct rendering - it has own buffer |
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
54 // allocation. so we just export its buffer pointers: |
4186 | 55 #define MP_IMGTYPE_EXPORT 0 |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
56 // codec requires a static WO buffer, but it does only partial updates later: |
4186 | 57 #define MP_IMGTYPE_STATIC 1 |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
58 // codec just needs some WO memory, where it writes/copies the whole frame to: |
4186 | 59 #define MP_IMGTYPE_TEMP 2 |
4877
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
60 // I+P type, requires 2+ independent static R/W buffers |
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
61 #define MP_IMGTYPE_IP 3 |
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
62 // I+P+B type, requires 2+ independent static R/W and 1+ temp WO buffers |
9d97874d8691
new flags added for direct rendering (libmpcodecs core)
arpi
parents:
4187
diff
changeset
|
63 #define MP_IMGTYPE_IPB 4 |
4186 | 64 |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
65 #define MP_MAX_PLANES 4 |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
66 |
10663 | 67 #define MP_IMGFIELD_ORDERED 0x01 |
68 #define MP_IMGFIELD_TOP_FIRST 0x02 | |
69 #define MP_IMGFIELD_REPEAT_FIRST 0x04 | |
70 #define MP_IMGFIELD_TOP 0x08 | |
71 #define MP_IMGFIELD_BOTTOM 0x10 | |
10510
73b3e4336cd4
Add mpeg2_flags to mp_image_t, copy flags in vd_libmpeg2.c,
ranma
parents:
10316
diff
changeset
|
72 |
4185 | 73 typedef struct mp_image_s { |
74 unsigned short flags; | |
4186 | 75 unsigned char type; |
76 unsigned char bpp; // bits/pixel. NOT depth! for RGB it will be n*8 | |
4185 | 77 unsigned int imgfmt; |
78 int width,height; // stored dimensions | |
79 int x,y,w,h; // visible dimensions | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
80 unsigned char* planes[MP_MAX_PLANES]; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
81 unsigned int stride[MP_MAX_PLANES]; |
7984
a57c1fc0c2fc
change qscale type to int8 and fix qscale ordering
michael
parents:
7957
diff
changeset
|
82 char * qscale; |
4185 | 83 int qstride; |
7957
31fd09cc9ba2
passing picture_type (might be usefull for postprocessing)
michael
parents:
6911
diff
changeset
|
84 int pict_type; // 0->unknown, 1->I, 2->P, 3->B |
10663 | 85 int fields; |
9925
420640a0f6d0
passing qscale_type around so the pp code can fix the mpeg2 <<1 thing
michael
parents:
9171
diff
changeset
|
86 int qscale_type; // 0->mpeg1/4/h263, 1->mpeg2 |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
87 int num_planes; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
88 /* these are only used by planar formats Y,U(Cb),V(Cr) */ |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
89 int chroma_width; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
90 int chroma_height; |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6538
diff
changeset
|
91 int chroma_x_shift; // horizontal |
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6538
diff
changeset
|
92 int chroma_y_shift; // vertical |
6759
415be01747ae
added 'priv' field to mpi - requires for tracking frames with different
arpi
parents:
6707
diff
changeset
|
93 /* for private use by filter or vo driver (to store buffer id or dmpi) */ |
415be01747ae
added 'priv' field to mpi - requires for tracking frames with different
arpi
parents:
6707
diff
changeset
|
94 void* priv; |
4185 | 95 } mp_image_t; |
96 | |
97 #ifdef IMGFMT_YUY2 | |
98 static inline void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt){ | |
99 mpi->flags&=~(MP_IMGFLAG_PLANAR|MP_IMGFLAG_YUV|MP_IMGFLAG_SWAPPED); | |
4187 | 100 mpi->imgfmt=out_fmt; |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
101 if(out_fmt == IMGFMT_MPEGPES){ |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
102 mpi->bpp=0; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
103 return; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
104 } |
11386
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
105 if(out_fmt == IMGFMT_ZRMJPEGNI || |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
106 out_fmt == IMGFMT_ZRMJPEGIT || |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
107 out_fmt == IMGFMT_ZRMJPEGIB){ |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
108 mpi->bpp=0; |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
109 return; |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
110 } |
10316 | 111 if(IMGFMT_IS_XVMC(out_fmt)){ |
112 mpi->bpp=0; | |
113 return; | |
114 } | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
115 mpi->num_planes=1; |
6707 | 116 if (IMGFMT_IS_RGB(out_fmt)) { |
9171 | 117 if (IMGFMT_RGB_DEPTH(out_fmt) < 8 && !(out_fmt&128)) |
6707 | 118 mpi->bpp = IMGFMT_RGB_DEPTH(out_fmt); |
119 else | |
120 mpi->bpp=(IMGFMT_RGB_DEPTH(out_fmt)+7)&(~7); | |
4185 | 121 return; |
122 } | |
6707 | 123 if (IMGFMT_IS_BGR(out_fmt)) { |
9171 | 124 if (IMGFMT_BGR_DEPTH(out_fmt) < 8 && !(out_fmt&128)) |
6707 | 125 mpi->bpp = IMGFMT_BGR_DEPTH(out_fmt); |
126 else | |
127 mpi->bpp=(IMGFMT_BGR_DEPTH(out_fmt)+7)&(~7); | |
4185 | 128 mpi->flags|=MP_IMGFLAG_SWAPPED; |
129 return; | |
130 } | |
131 mpi->flags|=MP_IMGFLAG_YUV; | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
132 mpi->num_planes=3; |
4185 | 133 switch(out_fmt){ |
134 case IMGFMT_I420: | |
135 case IMGFMT_IYUV: | |
136 mpi->flags|=MP_IMGFLAG_SWAPPED; | |
137 case IMGFMT_YV12: | |
138 mpi->flags|=MP_IMGFLAG_PLANAR; | |
139 mpi->bpp=12; | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
140 mpi->chroma_width=(mpi->width>>1); |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
141 mpi->chroma_height=(mpi->height>>1); |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6538
diff
changeset
|
142 mpi->chroma_x_shift=1; |
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6538
diff
changeset
|
143 mpi->chroma_y_shift=1; |
4185 | 144 return; |
6525 | 145 case IMGFMT_IF09: |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
146 mpi->num_planes=4; |
6478 | 147 case IMGFMT_YVU9: |
148 mpi->flags|=MP_IMGFLAG_PLANAR; | |
149 mpi->bpp=9; | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
150 mpi->chroma_width=(mpi->width>>2); |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
151 mpi->chroma_height=(mpi->height>>2); |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6538
diff
changeset
|
152 mpi->chroma_x_shift=2; |
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6538
diff
changeset
|
153 mpi->chroma_y_shift=2; |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
154 return; |
6863 | 155 case IMGFMT_444P: |
156 mpi->flags|=MP_IMGFLAG_PLANAR; | |
157 mpi->bpp=24; | |
158 mpi->chroma_width=(mpi->width); | |
159 mpi->chroma_height=(mpi->height); | |
160 mpi->chroma_x_shift=0; | |
161 mpi->chroma_y_shift=0; | |
162 return; | |
163 case IMGFMT_422P: | |
164 mpi->flags|=MP_IMGFLAG_PLANAR; | |
165 mpi->bpp=16; | |
166 mpi->chroma_width=(mpi->width>>1); | |
167 mpi->chroma_height=(mpi->height); | |
168 mpi->chroma_x_shift=1; | |
169 mpi->chroma_y_shift=0; | |
170 return; | |
171 case IMGFMT_411P: | |
172 mpi->flags|=MP_IMGFLAG_PLANAR; | |
173 mpi->bpp=12; | |
174 mpi->chroma_width=(mpi->width>>2); | |
175 mpi->chroma_height=(mpi->height); | |
176 mpi->chroma_x_shift=2; | |
177 mpi->chroma_y_shift=0; | |
178 return; | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
179 case IMGFMT_Y800: |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
180 case IMGFMT_Y8: |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
181 /* they're planar ones, but for easier handling use them as packed */ |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
182 // mpi->flags|=MP_IMGFLAG_PLANAR; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
183 mpi->bpp=8; |
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
184 mpi->num_planes=1; |
6478 | 185 return; |
4185 | 186 case IMGFMT_UYVY: |
187 mpi->flags|=MP_IMGFLAG_SWAPPED; | |
188 case IMGFMT_YUY2: | |
189 mpi->bpp=16; | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
190 mpi->num_planes=1; |
5144 | 191 return; |
10742
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
192 case IMGFMT_NV12: |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
193 mpi->flags|=MP_IMGFLAG_SWAPPED; |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
194 case IMGFMT_NV21: |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
195 mpi->flags|=MP_IMGFLAG_PLANAR; |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
196 mpi->bpp=12; |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
197 mpi->num_planes=2; |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
198 mpi->chroma_width=(mpi->width>>0); |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
199 mpi->chroma_height=(mpi->height>>1); |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
200 mpi->chroma_x_shift=0; |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
201 mpi->chroma_y_shift=1; |
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10663
diff
changeset
|
202 return; |
4185 | 203 } |
204 printf("mp_image: Unknown out_fmt: 0x%X\n",out_fmt); | |
205 mpi->bpp=0; | |
206 } | |
207 #endif | |
208 | |
209 static inline mp_image_t* new_mp_image(int w,int h){ | |
6911 | 210 mp_image_t* mpi=(mp_image_t*)malloc(sizeof(mp_image_t)); |
4185 | 211 if(!mpi) return NULL; // error! |
212 memset(mpi,0,sizeof(mp_image_t)); | |
213 mpi->width=mpi->w=w; | |
214 mpi->height=mpi->h=h; | |
215 return mpi; | |
216 } | |
4933 | 217 |
5737 | 218 static inline void free_mp_image(mp_image_t* mpi){ |
219 if(!mpi) return; | |
220 if(mpi->flags&MP_IMGFLAG_ALLOCATED){ | |
6538
afb4f3c107e7
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
6525
diff
changeset
|
221 /* becouse we allocate the whole image in once */ |
5737 | 222 if(mpi->planes[0]) free(mpi->planes[0]); |
223 } | |
224 free(mpi); | |
225 } | |
226 | |
4933 | 227 #endif |