Mercurial > mplayer.hg
annotate libmpcodecs/vf_bmovl.c @ 16484:5ad0e114d716
Typos
author | gpoirier |
---|---|
date | Wed, 14 Sep 2005 09:52:56 +0000 |
parents | 39ae20e6ad9d |
children | ea32158ad57b |
rev | line source |
---|---|
7855 | 1 /* vf_bmovl.c v0.9.1 - BitMap OVerLay videofilter for MPlayer |
2 * | |
3 * (C) 2002 Per Wigren <wigren@home.se> | |
4 * Licenced under the GNU General Public License | |
5 * | |
6 * Use MPlayer as a framebuffer to read bitmaps and commands from a FIFO | |
7 * and display them in the window. | |
8 * | |
7895 | 9 * Commands are: |
7855 | 10 * |
7895 | 11 * RGBA32 width height xpos ypos alpha clear |
12 * * Followed by width*height*4 bytes of raw RGBA32 data. | |
13 * ABGR32 width height xpos ypos alpha clear | |
14 * * Followed by width*height*4 bytes of raw ABGR32 data. | |
15 * RGB24 width height xpos ypos alpha clear | |
16 * * Followed by width*height*3 bytes of raw RGB32 data. | |
17 * BGR24 width height xpos ypos alpha clear | |
18 * * Followed by width*height*3 bytes of raw BGR32 data. | |
7855 | 19 * |
7895 | 20 * ALPHA width height xpos ypos alpha |
21 * * Change alpha for area | |
22 * CLEAR width height xpos ypos | |
23 * * Clear area | |
24 * OPAQUE | |
25 * * Disable all alpha transparency! | |
26 * Send "ALPHA 0 0 0 0 0" to enable again! | |
27 * HIDE | |
28 * * Hide bitmap | |
29 * SHOW | |
30 * * Show bitmap | |
7855 | 31 * |
32 * Arguments are: | |
33 * width, height Size of image/area | |
34 * xpos, ypos Start blitting at X/Y position | |
35 * alpha Set alpha difference. 0 means same as original. | |
36 * 255 makes everything opaque | |
37 * -255 makes everything transparent | |
38 * If you set this to -255 you can then send a sequence of | |
39 * ALPHA-commands to set the area to -225, -200, -175 etc | |
40 * for a nice fade-in-effect! ;) | |
41 * clear Clear the framebuffer before blitting. 1 means clear. | |
42 * If 0, the image will just be blitted on top of the old | |
43 * one, so you don't need to send 1,8MB of RGBA32 data | |
44 * everytime a small part of the screen is updated. | |
45 * | |
46 * Arguments for the filter are hidden:opaque:fifo | |
47 * For example 1:0:/tmp/myfifo.fifo will start the filter hidden, transparent | |
48 * and use /tmp/myfifo.fifo as the fifo. | |
49 * | |
50 * If you find bugs, please send me patches! ;) | |
51 * | |
52 * This filter was developed for use in Freevo (http://freevo.sf.net), but | |
53 * anyone is free to use it! ;) | |
54 * | |
55 */ | |
56 | |
57 #include <stdio.h> | |
58 #include <stdlib.h> | |
59 #include <string.h> | |
60 #include <unistd.h> | |
61 #include <errno.h> | |
62 #include <sys/stat.h> | |
63 #include <sys/types.h> | |
7858 | 64 #include <sys/time.h> |
7855 | 65 #include <fcntl.h> |
66 #include "mp_image.h" | |
67 #include "vf.h" | |
68 #include "img_format.h" | |
9832 | 69 #include "../config.h" |
70 | |
71 #ifndef HAVE_NO_POSIX_SELECT | |
7855 | 72 |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
73 #include "../mp_msg.h" |
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
74 |
7855 | 75 #include "../libvo/fastmemcpy.h" |
76 | |
77 #define IS_RAWIMG 0x100 | |
78 #define IS_IMG 0x200 | |
79 | |
80 #define NONE 0x000 | |
81 #define IMG_RGBA32 0x101 | |
82 #define IMG_ABGR32 0x102 | |
83 #define IMG_RGB24 0x103 | |
84 #define IMG_BGR24 0x104 | |
85 #define IMG_PNG 0x201 | |
86 #define CMD_CLEAR 0x001 | |
87 #define CMD_ALPHA 0x002 | |
88 | |
89 #define TRUE 1 | |
90 #define FALSE 0 | |
91 | |
92 #define MAX(a,b) ((a) > (b) ? (a) : (b)) | |
93 #define MIN(a,b) ((a) < (b) ? (a) : (b)) | |
94 #define INRANGE(a,b,c) ( ((a) < (b)) ? (b) : ( ((a) > (c)) ? (c) : (a) ) ) | |
95 | |
9131
67d28a3f918a
The code for converting RGB to YUV in bmovl is slow because it uses
arpi
parents:
9110
diff
changeset
|
96 #define rgb2y(R,G,B) ( (( 263*R + 516*G + 100*B) >> 10) + 16 ) |
67d28a3f918a
The code for converting RGB to YUV in bmovl is slow because it uses
arpi
parents:
9110
diff
changeset
|
97 #define rgb2u(R,G,B) ( ((-152*R - 298*G + 450*B) >> 10) + 128 ) |
67d28a3f918a
The code for converting RGB to YUV in bmovl is slow because it uses
arpi
parents:
9110
diff
changeset
|
98 #define rgb2v(R,G,B) ( (( 450*R - 376*G - 73*B) >> 10) + 128 ) |
7855 | 99 |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
100 #define DBG(a) (mp_msg(MSGT_VFILTER, MSGL_DBG2, "DEBUG: %d\n", a)) |
7855 | 101 |
102 struct vf_priv_s { | |
103 int w, h, x1, y1, x2, y2; | |
104 struct { | |
105 unsigned char *y, *u, *v, *a, *oa; | |
106 } bitmap; | |
107 int stream_fd; | |
108 fd_set stream_fdset; | |
109 int opaque, hidden; | |
110 }; | |
111 | |
112 static int | |
113 query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
114 if(fmt==IMGFMT_YV12) return VFCAP_CSP_SUPPORTED; | |
115 return 0; | |
116 } | |
117 | |
118 | |
119 static int | |
120 config(struct vf_instance_s* vf, | |
121 int width, int height, int d_width, int d_height, | |
122 unsigned int flags, unsigned int outfmt) | |
123 { | |
124 vf->priv->bitmap.y = malloc( width*height ); | |
125 vf->priv->bitmap.u = malloc( width*height/4 ); | |
126 vf->priv->bitmap.v = malloc( width*height/4 ); | |
127 vf->priv->bitmap.a = malloc( width*height ); | |
128 vf->priv->bitmap.oa = malloc( width*height ); | |
129 if(!( vf->priv->bitmap.y && | |
130 vf->priv->bitmap.u && | |
131 vf->priv->bitmap.v && | |
132 vf->priv->bitmap.a && | |
133 vf->priv->bitmap.oa )) { | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
134 mp_msg(MSGT_VFILTER, MSGL_ERR, "vf_bmovl: Could not allocate memory for bitmap buffer: %s\n", strerror(errno) ); |
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
135 return FALSE; |
7855 | 136 } |
137 | |
138 // Set default to black... | |
139 memset( vf->priv->bitmap.u, 128, width*height/4 ); | |
140 memset( vf->priv->bitmap.v, 128, width*height/4 ); | |
141 | |
142 vf->priv->w = vf->priv->x1 = width; | |
143 vf->priv->h = vf->priv->y1 = height; | |
144 vf->priv->y2 = vf->priv->x2 = 0; | |
145 | |
146 return vf_next_config(vf, width, height, d_width, d_height, flags, outfmt); | |
147 } | |
148 | |
149 static void | |
150 uninit(struct vf_instance_s *vf) | |
151 { | |
152 if(vf->priv) { | |
153 free(vf->priv->bitmap.y); | |
154 free(vf->priv->bitmap.u); | |
155 free(vf->priv->bitmap.v); | |
156 free(vf->priv->bitmap.a); | |
157 free(vf->priv->bitmap.oa); | |
158 free(vf->priv); | |
159 } | |
160 } | |
161 | |
162 static int | |
163 _read_cmd(int fd, char *cmd, char *args) { | |
164 int done=FALSE, pos=0; | |
165 char tmp; | |
166 | |
167 while(!done) { | |
168 if(! read( fd, &tmp, 1 ) ) return FALSE; | |
169 if( (tmp>='A' && tmp<='Z') || (tmp>='0' && tmp<='9') ) | |
170 cmd[pos]=tmp; | |
171 else if(tmp == ' ') { | |
172 cmd[pos]='\0'; | |
173 done=TRUE; | |
174 } | |
175 else if(tmp == '\n') { | |
176 cmd[pos]='\0'; | |
177 args[0]='\0'; | |
178 return TRUE; | |
179 } | |
180 if(pos++>20) { | |
181 cmd[0]='\0'; | |
182 return TRUE; | |
183 } | |
184 } | |
185 done=FALSE; pos=0; | |
186 while(!done) { | |
187 if(! read( fd, &tmp, 1 ) ) return FALSE; | |
188 if( (tmp >= ' ') && (pos<100) ) args[pos]=tmp; | |
189 else { | |
190 args[pos]='\0'; | |
191 done=TRUE; | |
192 } | |
193 pos++; | |
194 } | |
195 return TRUE; | |
196 } | |
197 | |
198 | |
199 static int | |
200 put_image(struct vf_instance_s* vf, mp_image_t* mpi){ | |
201 int buf_x=0, buf_y=0, buf_pos=0; | |
11620
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
202 int have, got, want; |
7855 | 203 int xpos=0, ypos=0, pos=0; |
204 unsigned char red=0, green=0, blue=0; | |
205 int alpha; | |
206 mp_image_t* dmpi; | |
207 | |
208 dmpi = vf_get_image(vf->next, mpi->imgfmt, MP_IMGTYPE_TEMP, | |
209 MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE, | |
210 mpi->w, mpi->h); | |
211 | |
212 memcpy( dmpi->planes[0], mpi->planes[0], mpi->stride[0] * mpi->height); | |
213 memcpy( dmpi->planes[1], mpi->planes[1], mpi->stride[1] * mpi->chroma_height); | |
214 memcpy( dmpi->planes[2], mpi->planes[2], mpi->stride[2] * mpi->chroma_height); | |
215 | |
216 if(vf->priv->stream_fd >= 0) { | |
217 struct timeval tv; | |
11015
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
218 int ready; |
7855 | 219 |
220 FD_SET( vf->priv->stream_fd, &vf->priv->stream_fdset ); | |
221 tv.tv_sec=0; tv.tv_usec=0; | |
222 | |
11015
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
223 ready = select( vf->priv->stream_fd+1, &vf->priv->stream_fdset, NULL, NULL, &tv ); |
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
224 if(ready > 0) { |
7855 | 225 // We've got new data from the FIFO |
226 | |
227 char cmd[20], args[100]; | |
228 int imgw,imgh,imgx,imgy,clear,imgalpha,pxsz=1,command; | |
229 unsigned char *buffer = NULL; | |
230 | |
231 if(! _read_cmd( vf->priv->stream_fd, cmd, args) ) { | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
232 mp_msg(MSGT_VFILTER, MSGL_ERR, "\nvf_bmovl: Error reading commands: %s\n\n", strerror(errno)); |
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
233 return FALSE; |
7855 | 234 } |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
235 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: Got: %s+%s\n", cmd, args); |
7855 | 236 |
237 command=NONE; | |
238 if ( strncmp(cmd,"RGBA32",6)==0 ) { pxsz=4; command = IMG_RGBA32; } | |
239 else if( strncmp(cmd,"ABGR32",6)==0 ) { pxsz=4; command = IMG_ABGR32; } | |
240 else if( strncmp(cmd,"RGB24" ,5)==0 ) { pxsz=3; command = IMG_RGB24; } | |
241 else if( strncmp(cmd,"BGR24" ,5)==0 ) { pxsz=3; command = IMG_BGR24; } | |
242 else if( strncmp(cmd,"CLEAR" ,5)==0 ) { pxsz=1; command = CMD_CLEAR; } | |
243 else if( strncmp(cmd,"ALPHA" ,5)==0 ) { pxsz=1; command = CMD_ALPHA; } | |
244 else if( strncmp(cmd,"OPAQUE",6)==0 ) vf->priv->opaque=TRUE; | |
245 else if( strncmp(cmd,"SHOW", 4)==0 ) vf->priv->hidden=FALSE; | |
246 else if( strncmp(cmd,"HIDE", 4)==0 ) vf->priv->hidden=TRUE; | |
247 else if( strncmp(cmd,"FLUSH" ,5)==0 ) return vf_next_put_image(vf, dmpi); | |
248 else { | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
249 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: Unknown command: '%s'. Ignoring.\n", cmd); |
7855 | 250 return vf_next_put_image(vf, dmpi); |
251 } | |
252 | |
253 if(command == CMD_ALPHA) { | |
254 sscanf( args, "%d %d %d %d %d", &imgw, &imgh, &imgx, &imgy, &imgalpha); | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
255 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: ALPHA: %d %d %d %d %d\n\n", |
7855 | 256 imgw, imgh, imgx, imgy, imgalpha); |
257 if(imgw==0 && imgh==0) vf->priv->opaque=FALSE; | |
258 } | |
259 | |
260 if(command & IS_RAWIMG) { | |
261 sscanf( args, "%d %d %d %d %d %d", | |
262 &imgw, &imgh, &imgx, &imgy, &imgalpha, &clear); | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
263 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: RAWIMG: %d %d %d %d %d %d\n\n", |
7855 | 264 imgw, imgh, imgx, imgy, imgalpha, clear); |
265 | |
266 buffer = malloc(imgw*imgh*pxsz); | |
267 if(!buffer) { | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
268 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: Couldn't allocate temporary buffer! Skipping...\n\n"); |
7855 | 269 return vf_next_put_image(vf, dmpi); |
270 } | |
11620
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
271 /* pipes/sockets might need multiple calls to read(): */ |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
272 want = (imgw*imgh*pxsz); |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
273 have = 0; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
274 while (have < want) { |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
275 got = read( vf->priv->stream_fd, buffer+have, want-have ); |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
276 if (got == 0) { |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
277 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: premature EOF...\n\n"); |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
278 break; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
279 } |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
280 if (got < 0) { |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
281 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: read error: %s\n\n", strerror(errno)); |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
282 break; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
283 } |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
284 have += got; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
285 } |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
286 mp_msg(MSGT_VFILTER, MSGL_DBG2, "Got %d bytes... (wanted %d)\n", have, want ); |
7855 | 287 |
288 if(clear) { | |
289 memset( vf->priv->bitmap.y, 0, vf->priv->w*vf->priv->h ); | |
290 memset( vf->priv->bitmap.u, 128, vf->priv->w*vf->priv->h/4 ); | |
291 memset( vf->priv->bitmap.v, 128, vf->priv->w*vf->priv->h/4 ); | |
292 memset( vf->priv->bitmap.a, 0, vf->priv->w*vf->priv->h ); | |
293 memset( vf->priv->bitmap.oa, 0, vf->priv->w*vf->priv->h ); | |
294 vf->priv->x1 = dmpi->width; | |
295 vf->priv->y1 = dmpi->height; | |
296 vf->priv->x2 = vf->priv->y2 = 0; | |
297 } | |
298 // Define how much of our bitmap that contains graphics! | |
299 vf->priv->x1 = MAX( 0, MIN(vf->priv->x1, imgx) ); | |
300 vf->priv->y1 = MAX( 0, MIN(vf->priv->y1, imgy) ); | |
301 vf->priv->x2 = MIN( vf->priv->w, MAX(vf->priv->x2, ( imgx + imgw)) ); | |
302 vf->priv->y2 = MIN( vf->priv->h, MAX(vf->priv->y2, ( imgy + imgh)) ); | |
303 } | |
304 | |
305 if( command == CMD_CLEAR ) { | |
306 sscanf( args, "%d %d %d %d", &imgw, &imgh, &imgx, &imgy); | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
307 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: CLEAR: %d %d %d %d\n\n", imgw, imgh, imgx, imgy); |
7855 | 308 |
309 for( ypos=imgy ; (ypos < (imgy+imgh)) && (ypos < vf->priv->y2) ; ypos++ ) { | |
310 memset( vf->priv->bitmap.y + (ypos*vf->priv->w) + imgx, 0, imgw ); | |
311 memset( vf->priv->bitmap.a + (ypos*vf->priv->w) + imgx, 0, imgw ); | |
312 memset( vf->priv->bitmap.oa + (ypos*vf->priv->w) + imgx, 0, imgw ); | |
313 if(ypos%2) { | |
314 memset( vf->priv->bitmap.u + ((ypos/2)*dmpi->stride[1]) + (imgx/2), 128, imgw/2 ); | |
315 memset( vf->priv->bitmap.v + ((ypos/2)*dmpi->stride[2]) + (imgx/2), 128, imgw/2 ); | |
316 } | |
317 } // Recalculate area that contains graphics | |
318 if( (imgx <= vf->priv->x1) && ( (imgw+imgx) >= vf->priv->x2) ) { | |
319 if( (imgy <= vf->priv->y1) && ( (imgy+imgh) >= vf->priv->y1) ) | |
320 vf->priv->y1 = imgy+imgh; | |
321 if( (imgy <= vf->priv->y2) && ( (imgy+imgh) >= vf->priv->y2) ) | |
322 vf->priv->y2 = imgy; | |
323 } | |
324 if( (imgy <= vf->priv->y1) && ( (imgy+imgh) >= vf->priv->y2) ) { | |
325 if( (imgx <= vf->priv->x1) && ( (imgx+imgw) >= vf->priv->x1) ) | |
326 vf->priv->x1 = imgx+imgw; | |
327 if( (imgx <= vf->priv->x2) && ( (imgx+imgw) >= vf->priv->x2) ) | |
328 vf->priv->x2 = imgx; | |
329 } | |
330 return vf_next_put_image(vf, dmpi); | |
331 } | |
332 | |
333 for( buf_y=0 ; (buf_y < imgh) && (buf_y < (vf->priv->h-imgy)) ; buf_y++ ) { | |
334 for( buf_x=0 ; (buf_x < (imgw*pxsz)) && (buf_x < ((vf->priv->w+imgx)*pxsz)) ; buf_x += pxsz ) { | |
335 if(command & IS_RAWIMG) buf_pos = (buf_y * imgw * pxsz) + buf_x; | |
336 pos = ((buf_y+imgy) * vf->priv->w) + ((buf_x/pxsz)+imgx); | |
337 | |
338 switch(command) { | |
339 case IMG_RGBA32: | |
340 red = buffer[buf_pos+0]; | |
341 green = buffer[buf_pos+1]; | |
342 blue = buffer[buf_pos+2]; | |
343 alpha = buffer[buf_pos+3]; | |
344 break; | |
345 case IMG_ABGR32: | |
346 alpha = buffer[buf_pos+0]; | |
347 blue = buffer[buf_pos+1]; | |
348 green = buffer[buf_pos+2]; | |
349 red = buffer[buf_pos+3]; | |
350 break; | |
351 case IMG_RGB24: | |
352 red = buffer[buf_pos+0]; | |
353 green = buffer[buf_pos+1]; | |
354 blue = buffer[buf_pos+2]; | |
355 alpha = 0xFF; | |
356 break; | |
357 case IMG_BGR24: | |
358 blue = buffer[buf_pos+0]; | |
359 green = buffer[buf_pos+1]; | |
360 red = buffer[buf_pos+2]; | |
361 alpha = 0xFF; | |
362 break; | |
363 case CMD_ALPHA: | |
364 vf->priv->bitmap.a[pos] = INRANGE((vf->priv->bitmap.oa[pos]+imgalpha),0,255); | |
365 break; | |
366 default: | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
367 mp_msg(MSGT_VFILTER, MSGL_ERR, "vf_bmovl: Internal error!\n"); |
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
368 return FALSE; |
7855 | 369 } |
370 if( command & IS_RAWIMG ) { | |
371 vf->priv->bitmap.y[pos] = rgb2y(red,green,blue); | |
372 vf->priv->bitmap.oa[pos] = alpha; | |
373 vf->priv->bitmap.a[pos] = INRANGE((alpha+imgalpha),0,255); | |
374 if((buf_y%2) && ((buf_x/pxsz)%2)) { | |
375 pos = ( ((buf_y+imgy)/2) * dmpi->stride[1] ) + (((buf_x/pxsz)+imgx)/2); | |
376 vf->priv->bitmap.u[pos] = rgb2u(red,green,blue); | |
377 vf->priv->bitmap.v[pos] = rgb2v(red,green,blue); | |
378 } | |
379 } | |
380 } // for buf_x | |
381 } // for buf_y | |
382 free (buffer); | |
11015
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
383 } else if(ready < 0) { |
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
384 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: Error %d in fifo: %s\n\n", errno, strerror(errno)); |
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
385 } |
7855 | 386 } |
387 | |
388 if(vf->priv->hidden) return vf_next_put_image(vf, dmpi); | |
389 | |
390 if(vf->priv->opaque) { // Just copy buffer memory to screen | |
391 for( ypos=vf->priv->y1 ; ypos < vf->priv->y2 ; ypos++ ) { | |
392 memcpy( dmpi->planes[0] + (ypos*dmpi->stride[0]) + vf->priv->x1, | |
393 vf->priv->bitmap.y + (ypos*vf->priv->w) + vf->priv->x1, | |
394 vf->priv->x2 - vf->priv->x1 ); | |
395 if(ypos%2) { | |
396 memcpy( dmpi->planes[1] + ((ypos/2)*dmpi->stride[1]) + (vf->priv->x1/2), | |
397 vf->priv->bitmap.u + (((ypos/2)*(vf->priv->w)/2)) + (vf->priv->x1/2), | |
398 (vf->priv->x2 - vf->priv->x1)/2 ); | |
399 memcpy( dmpi->planes[2] + ((ypos/2)*dmpi->stride[2]) + (vf->priv->x1/2), | |
400 vf->priv->bitmap.v + (((ypos/2)*(vf->priv->w)/2)) + (vf->priv->x1/2), | |
401 (vf->priv->x2 - vf->priv->x1)/2 ); | |
402 } | |
403 } | |
404 } else { // Blit the bitmap to the videoscreen, pixel for pixel | |
405 for( ypos=vf->priv->y1 ; ypos < vf->priv->y2 ; ypos++ ) { | |
406 for ( xpos=vf->priv->x1 ; xpos < vf->priv->x2 ; xpos++ ) { | |
407 pos = (ypos * dmpi->stride[0]) + xpos; | |
408 | |
409 alpha = vf->priv->bitmap.a[pos]; | |
410 | |
411 if (alpha == 0) continue; // Completly transparent pixel | |
412 | |
413 if (alpha == 255) { // Opaque pixel | |
414 dmpi->planes[0][pos] = vf->priv->bitmap.y[pos]; | |
415 if ((ypos%2) && (xpos%2)) { | |
416 pos = ( (ypos/2) * dmpi->stride[1] ) + (xpos/2); | |
417 dmpi->planes[1][pos] = vf->priv->bitmap.u[pos]; | |
418 dmpi->planes[2][pos] = vf->priv->bitmap.v[pos]; | |
419 } | |
420 } else { // Alphablended pixel | |
9110
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
421 dmpi->planes[0][pos] = |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
422 ((255 - alpha) * (int)dmpi->planes[0][pos] + |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
423 alpha * (int)vf->priv->bitmap.y[pos]) >> 8; |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
424 |
7855 | 425 if ((ypos%2) && (xpos%2)) { |
426 pos = ( (ypos/2) * dmpi->stride[1] ) + (xpos/2); | |
9110
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
427 |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
428 dmpi->planes[1][pos] = |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
429 ((255 - alpha) * (int)dmpi->planes[1][pos] + |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
430 alpha * (int)vf->priv->bitmap.u[pos]) >> 8; |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
431 |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
432 dmpi->planes[2][pos] = |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
433 ((255 - alpha) * (int)dmpi->planes[2][pos] + |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
434 alpha * (int)vf->priv->bitmap.v[pos]) >> 8; |
7855 | 435 } |
436 } | |
437 } // for xpos | |
438 } // for ypos | |
439 } // if !opaque | |
440 return vf_next_put_image(vf, dmpi); | |
441 } // put_image | |
442 | |
443 static int | |
444 vf_open(vf_instance_t* vf, char* args) | |
445 { | |
446 char filename[1000]; | |
447 | |
448 vf->config = config; | |
449 vf->put_image = put_image; | |
450 vf->query_format = query_format; | |
451 vf->uninit = uninit; | |
452 | |
453 vf->priv = malloc(sizeof(struct vf_priv_s)); | |
454 | |
10337 | 455 if(!args || sscanf(args, "%d:%d:%s", &vf->priv->hidden, &vf->priv->opaque, filename) < 3 ) { |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
456 mp_msg(MSGT_VFILTER, MSGL_ERR, "vf_bmovl: Bad arguments!\n"); |
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
457 mp_msg(MSGT_VFILTER, MSGL_ERR, "vf_bmovl: Arguments are 'bool hidden:bool opaque:string fifo'\n"); |
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
458 return FALSE; |
7855 | 459 } |
460 | |
461 vf->priv->stream_fd = open(filename, O_RDWR); | |
462 if(vf->priv->stream_fd >= 0) { | |
463 FD_ZERO( &vf->priv->stream_fdset ); | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
464 mp_msg(MSGT_VFILTER, MSGL_INFO, "vf_bmovl: Opened fifo %s as FD %d\n", filename, vf->priv->stream_fd); |
7855 | 465 } else { |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
466 mp_msg(MSGT_VFILTER, MSGL_WARN, "vf_bmovl: Error! Couldn't open FIFO %s: %s\n", filename, strerror(errno)); |
7855 | 467 vf->priv->stream_fd = -1; |
468 } | |
469 | |
470 return TRUE; | |
471 } | |
472 | |
473 vf_info_t vf_info_bmovl = { | |
474 "Read bitmaps from a FIFO and display them in window", | |
475 "bmovl", | |
476 "Per Wigren", | |
477 "", | |
9593
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
9131
diff
changeset
|
478 vf_open, |
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
9131
diff
changeset
|
479 NULL |
7855 | 480 }; |
9832 | 481 |
482 #endif |