Mercurial > mplayer.hg
annotate libmpcodecs/vf_bmovl.c @ 25768:3554b31074de
Add name to email address.
author | diego |
---|---|
date | Sat, 19 Jan 2008 13:40:13 +0000 |
parents | c2b7ba444ade |
children | d97a607821f1 |
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> |
17630 | 66 #include "config.h" |
7855 | 67 #include "mp_image.h" |
68 #include "vf.h" | |
69 #include "img_format.h" | |
9832 | 70 |
17012 | 71 #include "mp_msg.h" |
22377
fd54975f9135
Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.
reimar
parents:
19166
diff
changeset
|
72 #include "libavutil/common.h" |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
73 |
17012 | 74 #include "libvo/fastmemcpy.h" |
7855 | 75 |
76 #define IS_RAWIMG 0x100 | |
77 #define IS_IMG 0x200 | |
78 | |
79 #define NONE 0x000 | |
80 #define IMG_RGBA32 0x101 | |
81 #define IMG_ABGR32 0x102 | |
82 #define IMG_RGB24 0x103 | |
83 #define IMG_BGR24 0x104 | |
84 #define IMG_PNG 0x201 | |
85 #define CMD_CLEAR 0x001 | |
86 #define CMD_ALPHA 0x002 | |
87 | |
88 #define TRUE 1 | |
89 #define FALSE 0 | |
90 | |
91 #define INRANGE(a,b,c) ( ((a) < (b)) ? (b) : ( ((a) > (c)) ? (c) : (a) ) ) | |
92 | |
9131
67d28a3f918a
The code for converting RGB to YUV in bmovl is slow because it uses
arpi
parents:
9110
diff
changeset
|
93 #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
|
94 #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
|
95 #define rgb2v(R,G,B) ( (( 450*R - 376*G - 73*B) >> 10) + 128 ) |
7855 | 96 |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
97 #define DBG(a) (mp_msg(MSGT_VFILTER, MSGL_DBG2, "DEBUG: %d\n", a)) |
7855 | 98 |
99 struct vf_priv_s { | |
100 int w, h, x1, y1, x2, y2; | |
101 struct { | |
102 unsigned char *y, *u, *v, *a, *oa; | |
103 } bitmap; | |
104 int stream_fd; | |
105 fd_set stream_fdset; | |
106 int opaque, hidden; | |
107 }; | |
108 | |
109 static int | |
110 query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
111 if(fmt==IMGFMT_YV12) return VFCAP_CSP_SUPPORTED; | |
112 return 0; | |
113 } | |
114 | |
115 | |
116 static int | |
117 config(struct vf_instance_s* vf, | |
118 int width, int height, int d_width, int d_height, | |
119 unsigned int flags, unsigned int outfmt) | |
120 { | |
121 vf->priv->bitmap.y = malloc( width*height ); | |
122 vf->priv->bitmap.u = malloc( width*height/4 ); | |
123 vf->priv->bitmap.v = malloc( width*height/4 ); | |
124 vf->priv->bitmap.a = malloc( width*height ); | |
125 vf->priv->bitmap.oa = malloc( width*height ); | |
126 if(!( vf->priv->bitmap.y && | |
127 vf->priv->bitmap.u && | |
128 vf->priv->bitmap.v && | |
129 vf->priv->bitmap.a && | |
130 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
|
131 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
|
132 return FALSE; |
7855 | 133 } |
134 | |
135 // Set default to black... | |
136 memset( vf->priv->bitmap.u, 128, width*height/4 ); | |
137 memset( vf->priv->bitmap.v, 128, width*height/4 ); | |
138 | |
139 vf->priv->w = vf->priv->x1 = width; | |
140 vf->priv->h = vf->priv->y1 = height; | |
141 vf->priv->y2 = vf->priv->x2 = 0; | |
142 | |
143 return vf_next_config(vf, width, height, d_width, d_height, flags, outfmt); | |
144 } | |
145 | |
146 static void | |
147 uninit(struct vf_instance_s *vf) | |
148 { | |
149 if(vf->priv) { | |
150 free(vf->priv->bitmap.y); | |
151 free(vf->priv->bitmap.u); | |
152 free(vf->priv->bitmap.v); | |
153 free(vf->priv->bitmap.a); | |
154 free(vf->priv->bitmap.oa); | |
16886
ea32158ad57b
close stream_fd on uninit. Fixes bugzilla bug #400.
reimar
parents:
11620
diff
changeset
|
155 if (vf->priv->stream_fd >= 0) |
ea32158ad57b
close stream_fd on uninit. Fixes bugzilla bug #400.
reimar
parents:
11620
diff
changeset
|
156 close(vf->priv->stream_fd); |
7855 | 157 free(vf->priv); |
158 } | |
159 } | |
160 | |
161 static int | |
162 _read_cmd(int fd, char *cmd, char *args) { | |
163 int done=FALSE, pos=0; | |
164 char tmp; | |
165 | |
166 while(!done) { | |
167 if(! read( fd, &tmp, 1 ) ) return FALSE; | |
168 if( (tmp>='A' && tmp<='Z') || (tmp>='0' && tmp<='9') ) | |
169 cmd[pos]=tmp; | |
170 else if(tmp == ' ') { | |
171 cmd[pos]='\0'; | |
172 done=TRUE; | |
173 } | |
174 else if(tmp == '\n') { | |
175 cmd[pos]='\0'; | |
176 args[0]='\0'; | |
177 return TRUE; | |
178 } | |
179 if(pos++>20) { | |
180 cmd[0]='\0'; | |
181 return TRUE; | |
182 } | |
183 } | |
184 done=FALSE; pos=0; | |
185 while(!done) { | |
186 if(! read( fd, &tmp, 1 ) ) return FALSE; | |
187 if( (tmp >= ' ') && (pos<100) ) args[pos]=tmp; | |
188 else { | |
189 args[pos]='\0'; | |
190 done=TRUE; | |
191 } | |
192 pos++; | |
193 } | |
194 return TRUE; | |
195 } | |
196 | |
197 | |
198 static int | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
199 put_image(struct vf_instance_s* vf, mp_image_t* mpi, double pts){ |
7855 | 200 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
|
201 int have, got, want; |
7855 | 202 int xpos=0, ypos=0, pos=0; |
203 unsigned char red=0, green=0, blue=0; | |
204 int alpha; | |
205 mp_image_t* dmpi; | |
206 | |
207 dmpi = vf_get_image(vf->next, mpi->imgfmt, MP_IMGTYPE_TEMP, | |
208 MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE, | |
209 mpi->w, mpi->h); | |
210 | |
19166
d36048cad8c4
in some cases, vf_bmovl produces junk due to source and
gpoirier
parents:
17906
diff
changeset
|
211 memcpy_pic( dmpi->planes[0], mpi->planes[0], mpi->width, mpi->height, dmpi->stride[0], mpi->stride[0] ); |
d36048cad8c4
in some cases, vf_bmovl produces junk due to source and
gpoirier
parents:
17906
diff
changeset
|
212 memcpy_pic( dmpi->planes[1], mpi->planes[1], mpi->chroma_width, mpi->chroma_height, dmpi->stride[1], mpi->stride[1] ); |
d36048cad8c4
in some cases, vf_bmovl produces junk due to source and
gpoirier
parents:
17906
diff
changeset
|
213 memcpy_pic( dmpi->planes[2], mpi->planes[2], mpi->chroma_width, mpi->chroma_height, dmpi->stride[2], mpi->stride[2] ); |
7855 | 214 |
215 if(vf->priv->stream_fd >= 0) { | |
216 struct timeval tv; | |
11015
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
217 int ready; |
7855 | 218 |
219 FD_SET( vf->priv->stream_fd, &vf->priv->stream_fdset ); | |
220 tv.tv_sec=0; tv.tv_usec=0; | |
221 | |
11015
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
222 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
|
223 if(ready > 0) { |
7855 | 224 // We've got new data from the FIFO |
225 | |
226 char cmd[20], args[100]; | |
227 int imgw,imgh,imgx,imgy,clear,imgalpha,pxsz=1,command; | |
228 unsigned char *buffer = NULL; | |
229 | |
230 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
|
231 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
|
232 return FALSE; |
7855 | 233 } |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
234 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: Got: %s+%s\n", cmd, args); |
7855 | 235 |
236 command=NONE; | |
237 if ( strncmp(cmd,"RGBA32",6)==0 ) { pxsz=4; command = IMG_RGBA32; } | |
238 else if( strncmp(cmd,"ABGR32",6)==0 ) { pxsz=4; command = IMG_ABGR32; } | |
239 else if( strncmp(cmd,"RGB24" ,5)==0 ) { pxsz=3; command = IMG_RGB24; } | |
240 else if( strncmp(cmd,"BGR24" ,5)==0 ) { pxsz=3; command = IMG_BGR24; } | |
241 else if( strncmp(cmd,"CLEAR" ,5)==0 ) { pxsz=1; command = CMD_CLEAR; } | |
242 else if( strncmp(cmd,"ALPHA" ,5)==0 ) { pxsz=1; command = CMD_ALPHA; } | |
243 else if( strncmp(cmd,"OPAQUE",6)==0 ) vf->priv->opaque=TRUE; | |
244 else if( strncmp(cmd,"SHOW", 4)==0 ) vf->priv->hidden=FALSE; | |
245 else if( strncmp(cmd,"HIDE", 4)==0 ) vf->priv->hidden=TRUE; | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
246 else if( strncmp(cmd,"FLUSH" ,5)==0 ) return vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); |
7855 | 247 else { |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
248 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: Unknown command: '%s'. Ignoring.\n", cmd); |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
249 return vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); |
7855 | 250 } |
251 | |
252 if(command == CMD_ALPHA) { | |
253 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
|
254 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: ALPHA: %d %d %d %d %d\n\n", |
7855 | 255 imgw, imgh, imgx, imgy, imgalpha); |
256 if(imgw==0 && imgh==0) vf->priv->opaque=FALSE; | |
257 } | |
258 | |
259 if(command & IS_RAWIMG) { | |
260 sscanf( args, "%d %d %d %d %d %d", | |
261 &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
|
262 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: RAWIMG: %d %d %d %d %d %d\n\n", |
7855 | 263 imgw, imgh, imgx, imgy, imgalpha, clear); |
264 | |
265 buffer = malloc(imgw*imgh*pxsz); | |
266 if(!buffer) { | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
267 mp_msg(MSGT_VFILTER, MSGL_WARN, "\nvf_bmovl: Couldn't allocate temporary buffer! Skipping...\n\n"); |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
268 return vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); |
7855 | 269 } |
11620
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
270 /* 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
|
271 want = (imgw*imgh*pxsz); |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
272 have = 0; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
273 while (have < want) { |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
274 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
|
275 if (got == 0) { |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
276 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
|
277 break; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
278 } |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
279 if (got < 0) { |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
280 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
|
281 break; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
282 } |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
283 have += got; |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
284 } |
39ae20e6ad9d
fix bug when bmovl can't read the whole pic at once
attila
parents:
11015
diff
changeset
|
285 mp_msg(MSGT_VFILTER, MSGL_DBG2, "Got %d bytes... (wanted %d)\n", have, want ); |
7855 | 286 |
287 if(clear) { | |
288 memset( vf->priv->bitmap.y, 0, vf->priv->w*vf->priv->h ); | |
289 memset( vf->priv->bitmap.u, 128, vf->priv->w*vf->priv->h/4 ); | |
290 memset( vf->priv->bitmap.v, 128, vf->priv->w*vf->priv->h/4 ); | |
291 memset( vf->priv->bitmap.a, 0, vf->priv->w*vf->priv->h ); | |
292 memset( vf->priv->bitmap.oa, 0, vf->priv->w*vf->priv->h ); | |
293 vf->priv->x1 = dmpi->width; | |
294 vf->priv->y1 = dmpi->height; | |
295 vf->priv->x2 = vf->priv->y2 = 0; | |
296 } | |
297 // Define how much of our bitmap that contains graphics! | |
22377
fd54975f9135
Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.
reimar
parents:
19166
diff
changeset
|
298 vf->priv->x1 = av_clip(imgx, 0, vf->priv->x1); |
fd54975f9135
Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.
reimar
parents:
19166
diff
changeset
|
299 vf->priv->y1 = av_clip(imgy, 0, vf->priv->y1); |
fd54975f9135
Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.
reimar
parents:
19166
diff
changeset
|
300 vf->priv->x2 = av_clip(imgx + imgw, vf->priv->x2, vf->priv->w); |
fd54975f9135
Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.
reimar
parents:
19166
diff
changeset
|
301 vf->priv->y2 = av_clip(imgy + imgh, vf->priv->y2, vf->priv->h); |
7855 | 302 } |
303 | |
304 if( command == CMD_CLEAR ) { | |
305 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
|
306 mp_msg(MSGT_VFILTER, MSGL_DBG2, "\nDEBUG: CLEAR: %d %d %d %d\n\n", imgw, imgh, imgx, imgy); |
7855 | 307 |
308 for( ypos=imgy ; (ypos < (imgy+imgh)) && (ypos < vf->priv->y2) ; ypos++ ) { | |
309 memset( vf->priv->bitmap.y + (ypos*vf->priv->w) + imgx, 0, imgw ); | |
310 memset( vf->priv->bitmap.a + (ypos*vf->priv->w) + imgx, 0, imgw ); | |
311 memset( vf->priv->bitmap.oa + (ypos*vf->priv->w) + imgx, 0, imgw ); | |
312 if(ypos%2) { | |
313 memset( vf->priv->bitmap.u + ((ypos/2)*dmpi->stride[1]) + (imgx/2), 128, imgw/2 ); | |
314 memset( vf->priv->bitmap.v + ((ypos/2)*dmpi->stride[2]) + (imgx/2), 128, imgw/2 ); | |
315 } | |
316 } // Recalculate area that contains graphics | |
317 if( (imgx <= vf->priv->x1) && ( (imgw+imgx) >= vf->priv->x2) ) { | |
318 if( (imgy <= vf->priv->y1) && ( (imgy+imgh) >= vf->priv->y1) ) | |
319 vf->priv->y1 = imgy+imgh; | |
320 if( (imgy <= vf->priv->y2) && ( (imgy+imgh) >= vf->priv->y2) ) | |
321 vf->priv->y2 = imgy; | |
322 } | |
323 if( (imgy <= vf->priv->y1) && ( (imgy+imgh) >= vf->priv->y2) ) { | |
324 if( (imgx <= vf->priv->x1) && ( (imgx+imgw) >= vf->priv->x1) ) | |
325 vf->priv->x1 = imgx+imgw; | |
326 if( (imgx <= vf->priv->x2) && ( (imgx+imgw) >= vf->priv->x2) ) | |
327 vf->priv->x2 = imgx; | |
328 } | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
329 return vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); |
7855 | 330 } |
331 | |
332 for( buf_y=0 ; (buf_y < imgh) && (buf_y < (vf->priv->h-imgy)) ; buf_y++ ) { | |
333 for( buf_x=0 ; (buf_x < (imgw*pxsz)) && (buf_x < ((vf->priv->w+imgx)*pxsz)) ; buf_x += pxsz ) { | |
334 if(command & IS_RAWIMG) buf_pos = (buf_y * imgw * pxsz) + buf_x; | |
335 pos = ((buf_y+imgy) * vf->priv->w) + ((buf_x/pxsz)+imgx); | |
336 | |
337 switch(command) { | |
338 case IMG_RGBA32: | |
339 red = buffer[buf_pos+0]; | |
340 green = buffer[buf_pos+1]; | |
341 blue = buffer[buf_pos+2]; | |
342 alpha = buffer[buf_pos+3]; | |
343 break; | |
344 case IMG_ABGR32: | |
345 alpha = buffer[buf_pos+0]; | |
346 blue = buffer[buf_pos+1]; | |
347 green = buffer[buf_pos+2]; | |
348 red = buffer[buf_pos+3]; | |
349 break; | |
350 case IMG_RGB24: | |
351 red = buffer[buf_pos+0]; | |
352 green = buffer[buf_pos+1]; | |
353 blue = buffer[buf_pos+2]; | |
354 alpha = 0xFF; | |
355 break; | |
356 case IMG_BGR24: | |
357 blue = buffer[buf_pos+0]; | |
358 green = buffer[buf_pos+1]; | |
359 red = buffer[buf_pos+2]; | |
360 alpha = 0xFF; | |
361 break; | |
362 case CMD_ALPHA: | |
363 vf->priv->bitmap.a[pos] = INRANGE((vf->priv->bitmap.oa[pos]+imgalpha),0,255); | |
364 break; | |
365 default: | |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
366 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
|
367 return FALSE; |
7855 | 368 } |
369 if( command & IS_RAWIMG ) { | |
370 vf->priv->bitmap.y[pos] = rgb2y(red,green,blue); | |
371 vf->priv->bitmap.oa[pos] = alpha; | |
372 vf->priv->bitmap.a[pos] = INRANGE((alpha+imgalpha),0,255); | |
373 if((buf_y%2) && ((buf_x/pxsz)%2)) { | |
374 pos = ( ((buf_y+imgy)/2) * dmpi->stride[1] ) + (((buf_x/pxsz)+imgx)/2); | |
375 vf->priv->bitmap.u[pos] = rgb2u(red,green,blue); | |
376 vf->priv->bitmap.v[pos] = rgb2v(red,green,blue); | |
377 } | |
378 } | |
379 } // for buf_x | |
380 } // for buf_y | |
381 free (buffer); | |
11015
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
382 } else if(ready < 0) { |
5331f38c8db7
correct handling of select ret=0, patch by Jonas Jensen <jbj@knef.dk>
alex
parents:
10337
diff
changeset
|
383 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
|
384 } |
7855 | 385 } |
386 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
387 if(vf->priv->hidden) return vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); |
7855 | 388 |
389 if(vf->priv->opaque) { // Just copy buffer memory to screen | |
390 for( ypos=vf->priv->y1 ; ypos < vf->priv->y2 ; ypos++ ) { | |
23457
a124f3abc1ec
Replace implicit use of fast_memcpy via macro by explicit use to allow
reimar
parents:
22752
diff
changeset
|
391 fast_memcpy( dmpi->planes[0] + (ypos*dmpi->stride[0]) + vf->priv->x1, |
7855 | 392 vf->priv->bitmap.y + (ypos*vf->priv->w) + vf->priv->x1, |
393 vf->priv->x2 - vf->priv->x1 ); | |
394 if(ypos%2) { | |
23457
a124f3abc1ec
Replace implicit use of fast_memcpy via macro by explicit use to allow
reimar
parents:
22752
diff
changeset
|
395 fast_memcpy( dmpi->planes[1] + ((ypos/2)*dmpi->stride[1]) + (vf->priv->x1/2), |
7855 | 396 vf->priv->bitmap.u + (((ypos/2)*(vf->priv->w)/2)) + (vf->priv->x1/2), |
397 (vf->priv->x2 - vf->priv->x1)/2 ); | |
23457
a124f3abc1ec
Replace implicit use of fast_memcpy via macro by explicit use to allow
reimar
parents:
22752
diff
changeset
|
398 fast_memcpy( dmpi->planes[2] + ((ypos/2)*dmpi->stride[2]) + (vf->priv->x1/2), |
7855 | 399 vf->priv->bitmap.v + (((ypos/2)*(vf->priv->w)/2)) + (vf->priv->x1/2), |
400 (vf->priv->x2 - vf->priv->x1)/2 ); | |
401 } | |
402 } | |
403 } else { // Blit the bitmap to the videoscreen, pixel for pixel | |
404 for( ypos=vf->priv->y1 ; ypos < vf->priv->y2 ; ypos++ ) { | |
405 for ( xpos=vf->priv->x1 ; xpos < vf->priv->x2 ; xpos++ ) { | |
406 pos = (ypos * dmpi->stride[0]) + xpos; | |
407 | |
408 alpha = vf->priv->bitmap.a[pos]; | |
409 | |
410 if (alpha == 0) continue; // Completly transparent pixel | |
411 | |
412 if (alpha == 255) { // Opaque pixel | |
413 dmpi->planes[0][pos] = vf->priv->bitmap.y[pos]; | |
414 if ((ypos%2) && (xpos%2)) { | |
415 pos = ( (ypos/2) * dmpi->stride[1] ) + (xpos/2); | |
416 dmpi->planes[1][pos] = vf->priv->bitmap.u[pos]; | |
417 dmpi->planes[2][pos] = vf->priv->bitmap.v[pos]; | |
418 } | |
419 } 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
|
420 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
|
421 ((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
|
422 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
|
423 |
7855 | 424 if ((ypos%2) && (xpos%2)) { |
425 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
|
426 |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
427 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
|
428 ((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
|
429 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
|
430 |
7924a60d833b
This is a simple patch to change the alpha blending code in bmovl to use
arpi
parents:
8878
diff
changeset
|
431 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
|
432 ((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
|
433 alpha * (int)vf->priv->bitmap.v[pos]) >> 8; |
7855 | 434 } |
435 } | |
436 } // for xpos | |
437 } // for ypos | |
438 } // if !opaque | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17630
diff
changeset
|
439 return vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); |
7855 | 440 } // put_image |
441 | |
442 static int | |
443 vf_open(vf_instance_t* vf, char* args) | |
444 { | |
445 char filename[1000]; | |
446 | |
447 vf->config = config; | |
448 vf->put_image = put_image; | |
449 vf->query_format = query_format; | |
450 vf->uninit = uninit; | |
451 | |
452 vf->priv = malloc(sizeof(struct vf_priv_s)); | |
453 | |
10337 | 454 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
|
455 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
|
456 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
|
457 return FALSE; |
7855 | 458 } |
459 | |
460 vf->priv->stream_fd = open(filename, O_RDWR); | |
461 if(vf->priv->stream_fd >= 0) { | |
462 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
|
463 mp_msg(MSGT_VFILTER, MSGL_INFO, "vf_bmovl: Opened fifo %s as FD %d\n", filename, vf->priv->stream_fd); |
7855 | 464 } else { |
8878
12e69a0d5a67
may not be perfect but it's certainly a start. feel free to change
rfelker
parents:
7895
diff
changeset
|
465 mp_msg(MSGT_VFILTER, MSGL_WARN, "vf_bmovl: Error! Couldn't open FIFO %s: %s\n", filename, strerror(errno)); |
7855 | 466 vf->priv->stream_fd = -1; |
467 } | |
468 | |
469 return TRUE; | |
470 } | |
471 | |
24969
c2b7ba444ade
begin moving const filter data to .text/.rodata sections
rfelker
parents:
23457
diff
changeset
|
472 const vf_info_t vf_info_bmovl = { |
7855 | 473 "Read bitmaps from a FIFO and display them in window", |
474 "bmovl", | |
475 "Per Wigren", | |
476 "", | |
9593
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
9131
diff
changeset
|
477 vf_open, |
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
9131
diff
changeset
|
478 NULL |
7855 | 479 }; |