Mercurial > mplayer.hg
annotate libmpcodecs/vf_ass.c @ 20027:2145cd4155f0
Remove outdate, obsolete and inflammatory rants section made in r19973 of English doc
author | gpoirier |
---|---|
date | Wed, 04 Oct 2006 11:46:39 +0000 |
parents | 9a2462925e07 |
children | e8adc3778348 |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*- |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
2 // vim:ts=8:sw=8:noet:ai: |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
3 /* |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
5 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
6 This program is free software; you can redistribute it and/or modify |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
8 the Free Software Foundation; either version 2 of the License, or |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
9 (at your option) any later version. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
10 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
11 This program is distributed in the hope that it will be useful, |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
14 GNU General Public License for more details. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
15 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
17 along with this program; if not, write to the Free Software |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
19 */ |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19563
diff
changeset
|
20 |
18937 | 21 #include "config.h" |
22 | |
23 #include <stdio.h> | |
24 #include <stdlib.h> | |
25 #include <string.h> | |
26 #include <stdint.h> | |
27 #include <assert.h> | |
28 | |
29 #include "config.h" | |
30 #include "mp_msg.h" | |
31 #include "help_mp.h" | |
32 | |
33 #include "img_format.h" | |
34 #include "mp_image.h" | |
35 #include "vf.h" | |
36 | |
37 #include "libvo/fastmemcpy.h" | |
38 | |
39 #include "m_option.h" | |
40 #include "m_struct.h" | |
41 | |
42 #include "libass/ass.h" | |
43 #include "libass/ass_mp.h" | |
44 | |
45 #define _r(c) ((c)>>24) | |
46 #define _g(c) (((c)>>16)&0xFF) | |
47 #define _b(c) (((c)>>8)&0xFF) | |
48 #define _a(c) ((c)&0xFF) | |
49 #define rgba2y(c) ( (( 263*_r(c) + 516*_g(c) + 100*_b(c)) >> 10) + 16 ) | |
50 #define rgba2u(c) ( ((-152*_r(c) - 298*_g(c) + 450*_b(c)) >> 10) + 128 ) | |
51 #define rgba2v(c) ( (( 450*_r(c) - 376*_g(c) - 73*_b(c)) >> 10) + 128 ) | |
52 | |
53 | |
54 static struct vf_priv_s { | |
55 int outh, outw; | |
56 | |
57 unsigned int outfmt; | |
58 | |
59 // 1 = auto-added filter: insert only if chain does not support EOSD already | |
60 // 0 = insert always | |
61 int auto_insert; | |
62 | |
63 ass_instance_t* ass_priv; | |
64 | |
65 unsigned char* planes[3]; | |
66 unsigned char* dirty_rows; | |
67 } vf_priv_dflt; | |
68 | |
69 extern int opt_screen_size_x; | |
70 extern int opt_screen_size_y; | |
71 | |
72 extern ass_track_t* ass_track; | |
73 extern float sub_delay; | |
74 extern int sub_visibility; | |
75 | |
76 static int config(struct vf_instance_s* vf, | |
77 int width, int height, int d_width, int d_height, | |
78 unsigned int flags, unsigned int outfmt) | |
79 { | |
80 ass_settings_t settings; | |
81 | |
82 if (outfmt == IMGFMT_IF09) return 0; | |
83 | |
84 vf->priv->outh = height + ass_top_margin + ass_bottom_margin; | |
85 vf->priv->outw = width; | |
86 | |
87 if(!opt_screen_size_x && !opt_screen_size_y){ | |
88 d_width = d_width * vf->priv->outw / width; | |
89 d_height = d_height * vf->priv->outh / height; | |
90 } | |
91 | |
19065
26ed3fcd5cd4
drops casts from void * on malloc/calloc, leftover on libmpcodecs
reynaldo
parents:
18937
diff
changeset
|
92 vf->priv->planes[1] = malloc(vf->priv->outw * vf->priv->outh); |
26ed3fcd5cd4
drops casts from void * on malloc/calloc, leftover on libmpcodecs
reynaldo
parents:
18937
diff
changeset
|
93 vf->priv->planes[2] = malloc(vf->priv->outw * vf->priv->outh); |
26ed3fcd5cd4
drops casts from void * on malloc/calloc, leftover on libmpcodecs
reynaldo
parents:
18937
diff
changeset
|
94 vf->priv->dirty_rows = malloc(vf->priv->outh); |
18937 | 95 |
96 if (vf->priv->ass_priv) { | |
19550 | 97 memset(&settings, 0, sizeof(ass_settings_t)); |
18937 | 98 settings.frame_width = vf->priv->outw; |
99 settings.frame_height = vf->priv->outh; | |
100 settings.font_size_coeff = ass_font_scale; | |
101 settings.line_spacing = ass_line_spacing; | |
102 settings.top_margin = ass_top_margin; | |
103 settings.bottom_margin = ass_bottom_margin; | |
19563 | 104 settings.use_margins = ass_use_margins; |
18937 | 105 settings.aspect = ((double)d_width) / d_height; |
106 | |
107 ass_configure(vf->priv->ass_priv, &settings); | |
108 } | |
109 | |
110 return vf_next_config(vf, vf->priv->outw, vf->priv->outh, d_width, d_height, flags, outfmt); | |
111 } | |
112 | |
113 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi) | |
114 { | |
115 if(mpi->type == MP_IMGTYPE_IPB) return; | |
116 if(mpi->flags & MP_IMGFLAG_PRESERVE) return; | |
117 if(mpi->imgfmt != vf->priv->outfmt) return; // colorspace differ | |
118 | |
119 // width never changes, always try full DR | |
120 mpi->priv = vf->dmpi = vf_get_image(vf->next, mpi->imgfmt, | |
121 mpi->type, mpi->flags, | |
122 vf->priv->outw, | |
123 vf->priv->outh); | |
124 | |
125 if((vf->dmpi->flags & MP_IMGFLAG_DRAW_CALLBACK) && | |
126 !(vf->dmpi->flags & MP_IMGFLAG_DIRECT)){ | |
127 mp_msg(MSGT_VFILTER, MSGL_INFO, MSGTR_MPCODECS_FullDRNotPossible); | |
128 return; | |
129 } | |
130 | |
131 // set up mpi as a cropped-down image of dmpi: | |
132 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
133 mpi->planes[0]=vf->dmpi->planes[0] + ass_top_margin * vf->dmpi->stride[0]; | |
134 mpi->planes[1]=vf->dmpi->planes[1] + (ass_top_margin >> mpi->chroma_y_shift) * vf->dmpi->stride[1]; | |
135 mpi->planes[2]=vf->dmpi->planes[2] + (ass_top_margin >> mpi->chroma_y_shift) * vf->dmpi->stride[2]; | |
136 mpi->stride[1]=vf->dmpi->stride[1]; | |
137 mpi->stride[2]=vf->dmpi->stride[2]; | |
138 } else { | |
139 mpi->planes[0]=vf->dmpi->planes[0] + ass_top_margin * vf->dmpi->stride[0]; | |
140 } | |
141 mpi->stride[0]=vf->dmpi->stride[0]; | |
142 mpi->width=vf->dmpi->width; | |
143 mpi->flags|=MP_IMGFLAG_DIRECT; | |
144 mpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK; | |
145 // vf->dmpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK; | |
146 } | |
147 | |
148 static void blank(mp_image_t *mpi, int y1, int y2) | |
149 { | |
150 int color[3] = {16, 128, 128}; // black (YUV) | |
151 int y; | |
152 unsigned char* dst; | |
153 int chroma_rows = (y2 - y1) >> mpi->chroma_y_shift; | |
154 | |
155 dst = mpi->planes[0] + y1 * mpi->stride[0]; | |
156 for (y = 0; y < y2 - y1; ++y) { | |
157 memset(dst, color[0], mpi->w); | |
158 dst += mpi->stride[0]; | |
159 } | |
160 dst = mpi->planes[1] + (y1 >> mpi->chroma_y_shift) * mpi->stride[1]; | |
161 for (y = 0; y < chroma_rows ; ++y) { | |
162 memset(dst, color[1], mpi->chroma_width); | |
163 dst += mpi->stride[1]; | |
164 } | |
165 dst = mpi->planes[2] + (y1 >> mpi->chroma_y_shift) * mpi->stride[2]; | |
166 for (y = 0; y < chroma_rows ; ++y) { | |
167 memset(dst, color[2], mpi->chroma_width); | |
168 dst += mpi->stride[2]; | |
169 } | |
170 } | |
171 | |
172 static int prepare_image(struct vf_instance_s* vf, mp_image_t *mpi) | |
173 { | |
174 if(mpi->flags&MP_IMGFLAG_DIRECT || mpi->flags&MP_IMGFLAG_DRAW_CALLBACK){ | |
175 vf->dmpi = mpi->priv; | |
176 if (!vf->dmpi) { mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_FunWhydowegetNULL); return 0; } | |
177 mpi->priv = NULL; | |
178 // we've used DR, so we're ready... | |
179 if (ass_top_margin) | |
180 blank(vf->dmpi, 0, ass_top_margin); | |
181 if (ass_bottom_margin) | |
182 blank(vf->dmpi, vf->priv->outh - ass_bottom_margin, vf->priv->outh); | |
183 if(!(mpi->flags&MP_IMGFLAG_PLANAR)) | |
184 vf->dmpi->planes[1] = mpi->planes[1]; // passthrough rgb8 palette | |
185 return 0; | |
186 } | |
187 | |
188 // hope we'll get DR buffer: | |
189 vf->dmpi = vf_get_image(vf->next, vf->priv->outfmt, | |
190 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, | |
191 vf->priv->outw, vf->priv->outh); | |
192 | |
193 // copy mpi->dmpi... | |
194 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
195 memcpy_pic(vf->dmpi->planes[0] + ass_top_margin * vf->dmpi->stride[0], | |
196 mpi->planes[0], mpi->w, mpi->h, | |
197 vf->dmpi->stride[0], mpi->stride[0]); | |
198 memcpy_pic(vf->dmpi->planes[1] + (ass_top_margin >> mpi->chroma_y_shift) * vf->dmpi->stride[1], | |
199 mpi->planes[1], mpi->w >> mpi->chroma_x_shift, mpi->h >> mpi->chroma_y_shift, | |
200 vf->dmpi->stride[1], mpi->stride[1]); | |
201 memcpy_pic(vf->dmpi->planes[2] + (ass_top_margin >> mpi->chroma_y_shift) * vf->dmpi->stride[2], | |
202 mpi->planes[2], mpi->w >> mpi->chroma_x_shift, mpi->h >> mpi->chroma_y_shift, | |
203 vf->dmpi->stride[2], mpi->stride[2]); | |
204 } else { | |
205 memcpy_pic(vf->dmpi->planes[0] + ass_top_margin * vf->dmpi->stride[0], | |
206 mpi->planes[0], mpi->w*(vf->dmpi->bpp/8), mpi->h, | |
207 vf->dmpi->stride[0], mpi->stride[0]); | |
208 vf->dmpi->planes[1] = mpi->planes[1]; // passthrough rgb8 palette | |
209 } | |
210 if (ass_top_margin) | |
211 blank(vf->dmpi, 0, ass_top_margin); | |
212 if (ass_bottom_margin) | |
213 blank(vf->dmpi, vf->priv->outh - ass_bottom_margin, vf->priv->outh); | |
214 return 0; | |
215 } | |
216 | |
217 /** | |
218 * \brief Copy specified rows from render_context.dmpi to render_context.planes, upsampling to 4:4:4 | |
219 */ | |
220 static void copy_from_image(struct vf_instance_s* vf, int first_row, int last_row) | |
221 { | |
222 int pl; | |
223 int i, j, k; | |
224 unsigned char val; | |
225 int chroma_rows; | |
226 | |
227 first_row -= (first_row % 2); | |
228 last_row += (last_row % 2); | |
229 chroma_rows = (last_row - first_row) / 2; | |
230 | |
231 for (pl = 1; pl < 3; ++pl) { | |
232 int dst_stride = vf->dmpi->stride[pl] * 2; | |
233 int src_stride = vf->dmpi->stride[pl]; | |
234 | |
235 unsigned char* src = vf->dmpi->planes[pl] + (first_row/2) * src_stride; | |
236 unsigned char* dst = vf->priv->planes[pl] + first_row * dst_stride; | |
237 unsigned char* dst_next = dst + dst_stride; | |
238 for(i = 0; i < chroma_rows; ++i) | |
239 { | |
240 if ((vf->priv->dirty_rows[first_row + i*2] == 0) || | |
241 (vf->priv->dirty_rows[first_row + i*2 + 1] == 0)) { | |
242 for (j = 0, k = 0; j < vf->dmpi->chroma_width; ++j, k+=2) { | |
243 val = *(src + j); | |
244 *(dst + k) = val; | |
245 *(dst + k + 1) = val; | |
246 *(dst_next + k) = val; | |
247 *(dst_next + k + 1) = val; | |
248 } | |
249 } | |
250 src += src_stride; | |
251 dst = dst_next + dst_stride; | |
252 dst_next = dst + dst_stride; | |
253 } | |
254 } | |
255 for (i = first_row; i < last_row; ++i) | |
256 vf->priv->dirty_rows[i] = 1; | |
257 } | |
258 | |
259 /** | |
260 * \brief Copy all previously copied rows back to render_context.dmpi | |
261 */ | |
262 static void copy_to_image(struct vf_instance_s* vf) | |
263 { | |
264 int pl; | |
265 int i, j, k; | |
266 for (pl = 1; pl < 3; ++pl) { | |
267 int dst_stride = vf->dmpi->stride[pl]; | |
268 int src_stride = vf->dmpi->stride[pl] * 2; | |
269 | |
270 unsigned char* dst = vf->dmpi->planes[pl]; | |
271 unsigned char* src = vf->priv->planes[pl]; | |
272 unsigned char* src_next = vf->priv->planes[pl] + src_stride; | |
273 for(i = 0; i < vf->dmpi->chroma_height; ++i) | |
274 { | |
275 if ((vf->priv->dirty_rows[i*2] == 1)) { | |
276 assert(vf->priv->dirty_rows[i*2 + 1] == 1); | |
277 for (j = 0, k = 0; j < vf->dmpi->chroma_width; ++j, k+=2) { | |
278 unsigned val = 0; | |
279 val += *(src + k); | |
280 val += *(src + k + 1); | |
281 val += *(src_next + k); | |
282 val += *(src_next + k + 1); | |
283 *(dst + j) = val >> 2; | |
284 } | |
285 } | |
286 dst += dst_stride; | |
287 src = src_next + src_stride; | |
288 src_next = src + src_stride; | |
289 } | |
290 } | |
291 } | |
292 | |
293 static void my_draw_bitmap(struct vf_instance_s* vf, unsigned char* bitmap, int bitmap_w, int bitmap_h, int stride, int dst_x, int dst_y, unsigned color) | |
294 { | |
295 unsigned char y = rgba2y(color); | |
296 unsigned char u = rgba2u(color); | |
297 unsigned char v = rgba2v(color); | |
298 unsigned char opacity = 255 - _a(color); | |
20012 | 299 unsigned char *src, *dsty, *dstu, *dstv; |
18937 | 300 int i, j; |
301 mp_image_t* dmpi = vf->dmpi; | |
302 | |
303 src = bitmap; | |
20012 | 304 dsty = dmpi->planes[0] + dst_x + dst_y * dmpi->stride[0]; |
305 dstu = vf->priv->planes[1] + dst_x + dst_y * 2 * dmpi->chroma_width; | |
306 dstv = vf->priv->planes[2] + dst_x + dst_y * 2 * dmpi->chroma_width; | |
18937 | 307 for (i = 0; i < bitmap_h; ++i) { |
308 for (j = 0; j < bitmap_w; ++j) { | |
20012 | 309 unsigned k = ((unsigned)src[j]) * opacity / 255; |
310 dsty[j] = (k*y + (255-k)*dsty[j]) / 255; | |
311 dstu[j] = (k*u + (255-k)*dstu[j]) / 255; | |
312 dstv[j] = (k*v + (255-k)*dstv[j]) / 255; | |
18937 | 313 } |
20012 | 314 src += stride; |
315 dsty += dmpi->stride[0]; | |
316 dstu += 2 * dmpi->chroma_width; | |
317 dstv += 2 * dmpi->chroma_width; | |
18937 | 318 } |
319 } | |
320 | |
321 static int render_frame(struct vf_instance_s* vf, mp_image_t *mpi, const ass_image_t* img) | |
322 { | |
323 if (img) { | |
324 memset(vf->priv->dirty_rows, 0, vf->priv->outh); // reset dirty rows | |
325 while (img) { | |
326 copy_from_image(vf, img->dst_y, img->dst_y + img->h); | |
327 my_draw_bitmap(vf, img->bitmap, img->w, img->h, img->stride, | |
328 img->dst_x, img->dst_y, img->color); | |
329 img = img->next; | |
330 } | |
331 copy_to_image(vf); | |
332 } | |
333 return 0; | |
334 } | |
335 | |
336 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts) | |
337 { | |
338 ass_image_t* images = 0; | |
339 if (sub_visibility && vf->priv->ass_priv && ass_track && (pts != MP_NOPTS_VALUE)) | |
340 images = ass_render_frame(vf->priv->ass_priv, ass_track, (pts+sub_delay) * 1000 + .5); | |
341 | |
342 prepare_image(vf, mpi); | |
343 if (images) render_frame(vf, mpi, images); | |
344 | |
345 return vf_next_put_image(vf, vf->dmpi, pts); | |
346 } | |
347 | |
348 static int query_format(struct vf_instance_s* vf, unsigned int fmt) | |
349 { | |
350 switch(fmt){ | |
351 case IMGFMT_YV12: | |
352 case IMGFMT_I420: | |
353 case IMGFMT_IYUV: | |
354 return vf_next_query_format(vf, vf->priv->outfmt); | |
355 } | |
356 return 0; | |
357 } | |
358 | |
359 static int control(vf_instance_t *vf, int request, void *data) | |
360 { | |
19521 | 361 switch (request) { |
362 case VFCTRL_INIT_EOSD: | |
18937 | 363 vf->priv->ass_priv = ass_init(); |
19517 | 364 return vf->priv->ass_priv ? CONTROL_TRUE : CONTROL_FALSE; |
19521 | 365 case VFCTRL_DRAW_EOSD: |
366 if (vf->priv->ass_priv) return CONTROL_TRUE; | |
367 break; | |
18937 | 368 } |
369 return vf_next_control(vf, request, data); | |
370 } | |
371 | |
372 static void uninit(struct vf_instance_s* vf) | |
373 { | |
374 if (vf->priv->ass_priv) | |
375 ass_done(vf->priv->ass_priv); | |
376 if (vf->priv->planes[1]) | |
377 free(vf->priv->planes[1]); | |
378 if (vf->priv->planes[2]) | |
379 free(vf->priv->planes[2]); | |
380 if (vf->priv->dirty_rows) | |
381 free(vf->priv->dirty_rows); | |
382 } | |
383 | |
384 static unsigned int fmt_list[]={ | |
385 IMGFMT_YV12, | |
386 IMGFMT_I420, | |
387 IMGFMT_IYUV, | |
388 0 | |
389 }; | |
390 | |
391 static int open(vf_instance_t *vf, char* args) | |
392 { | |
393 int flags; | |
394 vf->priv->outfmt = vf_match_csp(&vf->next,fmt_list,IMGFMT_YV12); | |
395 if (vf->priv->outfmt) | |
396 flags = vf_next_query_format(vf, vf->priv->outfmt); | |
397 if (!vf->priv->outfmt || (vf->priv->auto_insert && flags&VFCAP_EOSD)) | |
398 { | |
399 uninit(vf); | |
400 return 0; | |
401 } | |
402 | |
403 if (vf->priv->auto_insert) | |
404 mp_msg(MSGT_VFILTER, MSGL_INFO, "[ass] auto-open\n"); | |
405 | |
406 vf->config = config; | |
407 vf->query_format = query_format; | |
408 vf->uninit = uninit; | |
409 vf->control = control; | |
410 vf->get_image = get_image; | |
411 vf->put_image = put_image; | |
412 vf->default_caps=VFCAP_EOSD; | |
413 return 1; | |
414 } | |
415 | |
416 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f) | |
417 static m_option_t vf_opts_fields[] = { | |
418 {"auto", ST_OFF(auto_insert), CONF_TYPE_FLAG, 0 , 0, 1, NULL}, | |
419 { NULL, NULL, 0, 0, 0, 0, NULL } | |
420 }; | |
421 | |
422 static m_struct_t vf_opts = { | |
423 "ass", | |
424 sizeof(struct vf_priv_s), | |
425 &vf_priv_dflt, | |
426 vf_opts_fields | |
427 }; | |
428 | |
429 vf_info_t vf_info_ass = { | |
430 "Render ASS/SSA subtitles", | |
431 "ass", | |
432 "Evgeniy Stepanov", | |
433 "", | |
434 open, | |
435 &vf_opts | |
436 }; | |
437 |