2 * filter to tile a serie of image in a single, bigger, image
6 * xtile: number of tile on the x axis (5)
7 * ytile: number of tile on the y axis (5)
8 * xytile: when write the image, it can be different then xtile * ytile
9 * (for example you can write 8 * 7 tile, writing the file every
10 * 50 frame, to have one image every 2 seconds @ 25 fps ).
11 * start: pixel at the start (x/y), default 2
12 * delta: pixel between 2 tile, (x/y), default 4
14 * For example a valid command line is:
15 * ... -vf tile=10:5:-1:4:8 ...
16 * that make images of 10 * 5 tiles, with 4 pixel at the beginning and
17 * 8 pixel between tiles.
19 * The default command is:
20 * ... -vf tile=5:5:25:2:4
22 * If you omit a parameter or put a value less then 0, the default is used.
23 * ... -vf tile=10:5::-1:10
25 * You can also stop when you're ok
27 * (and this is probably the option you will use more often ...)
29 * Probably is good to put the scale filter before the tile :-)
31 * Daniele Forghieri ( guru@digitalfantasy.it )
43 #include "cpudetect.h"
45 #include "img_format.h"
49 #include "libvo/fastmemcpy.h"
53 /* configuration data */
54 /* Number on hor/ver tiles */
57 /* When write the whole frame (default = xtile * ytile) */
59 /* pixel at start / end (default = 4) */
61 /* pixel between image (default = 2) */
63 // /* Background color, in destination format */
71 static int config(struct vf_instance_s
* vf
,
72 int width
, int height
, int d_width
, int d_height
,
73 unsigned int flags
, unsigned int outfmt
){
75 struct vf_priv_s
*priv
;
79 /* Calculate new destination size */
81 xw
= priv
->start
* 2 +
83 (priv
->xtile
- 1) * priv
->delta
;
84 yh
= priv
->start
* 2 +
85 priv
->ytile
* height
+
86 (priv
->ytile
- 1) * priv
->delta
;
88 mp_msg(MSGT_VFILTER
,MSGL_V
,"vf_tile:config size set to %d * %d\n", xw
, yh
);
90 return vf_next_config(vf
, xw
, yh
, xw
, yh
, flags
, outfmt
);
94 static int put_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
, double pts
)
97 struct vf_priv_s
*priv
;
106 /* Calculate new size */
108 xw
= priv
->start
* 2 +
109 priv
->xtile
* mpi
->w
+
110 (priv
->xtile
- 1) * priv
->delta
;
111 yh
= priv
->start
* 2 +
112 priv
->ytile
* mpi
->h
+
113 (priv
->ytile
- 1) * priv
->delta
;
115 /* Get the big image! */
116 dmpi
=vf_get_image(vf
->next
, mpi
->imgfmt
,
117 MP_IMGTYPE_STATIC
, MP_IMGFLAG_ACCEPT_STRIDE
,
120 /* bytes x pixel & bytes x line */
121 if (mpi
->flags
& MP_IMGFLAG_PLANAR
) {
126 by
= (mpi
->bpp
+ 7) / 8;
130 t
= priv
->frame_cur
% priv
->xytile
;
131 // if ((t == 0) && (bkg != 0)) {
132 // /* First frame, delete the background */
136 /* Position of image */
137 xi
= priv
->start
+ (mpi
->w
+ priv
->delta
) * (t
% priv
->xtile
);
138 yi
= priv
->start
+ (mpi
->h
+ priv
->delta
) * (t
/ priv
->xtile
);
140 /* Copy first (or only) plane */
141 memcpy_pic( dmpi
->planes
[0] + xi
* by
+ yi
* dmpi
->stride
[0],
148 if (mpi
->flags
& MP_IMGFLAG_PLANAR
) {
149 /* Copy the other 2 planes */
150 memcpy_pic( dmpi
->planes
[1] + (xi
>> mpi
->chroma_x_shift
) + (yi
>> mpi
->chroma_y_shift
) * dmpi
->stride
[1],
156 memcpy_pic( dmpi
->planes
[2] + (xi
>> mpi
->chroma_x_shift
) + (yi
>> mpi
->chroma_y_shift
) * dmpi
->stride
[2],
164 /* Increment current frame */
167 if (t
== priv
->xytile
- 1) {
168 /* Display the composition */
171 return vf_next_put_image(vf
, dmpi
, MP_NOPTS_VALUE
);
179 static void uninit(struct vf_instance_s
* vf
)
181 /* free local data */
185 /* rgb/bgr 15->32 supported & some Yxxx */
186 static int query_format(struct vf_instance_s
* vf
, unsigned int fmt
)
189 /* rgb 15 -> 32 bit */
194 /* bgr 15 -> 32 bit */
199 /* Various Yxxx Formats */
209 return vf_next_query_format(vf
, fmt
);
214 /* Get an integer from the string pointed by s, adjusting s.
215 * If the value is less then 0 def_val is used.
218 * Look below ( in open(...) ) for a use ...
220 static int parse_int(char **s
, int *rt
, int def_val
)
226 /* Get value (dec, hex or octal) */
227 t
= strtol( *s
, s
, 0 );
235 /* Point to next character (problably a digit) */
238 else if (**s
!= '\0') {
239 /* Error, we got some wrong char */
252 /* Main entry funct for the filter */
253 static int open(vf_instance_t
*vf
, char* args
)
258 vf
->put_image
= put_image
;
259 vf
->query_format
= query_format
;
262 vf
->default_reqs
= VFCAP_ACCEPT_STRIDE
;
264 vf
->priv
= p
= calloc(1, sizeof(struct vf_priv_s
));
270 /* Use the default */
273 /* Parse all the arguments */
274 er
= parse_int( &args
, &p
->xtile
, 5 );
275 er
|= parse_int( &args
, &p
->ytile
, 5 );
276 er
|= parse_int( &args
, &p
->xytile
, 0 );
277 er
|= parse_int( &args
, &p
->start
, 2 );
278 er
|= parse_int( &args
, &p
->delta
, 4 );
279 // er |= parse_int( &args, &p->bkgSet, 0 );
282 mp_msg(MSGT_VFILTER
, MSGL_ERR
, MSGTR_MPCODECS_ErrorParsingArgument
);
285 /* Load some default */
286 if ((p
->xytile
<= 0) || (p
->xytile
> p
->xtile
* p
->ytile
)) {
287 p
->xytile
= p
->xtile
* p
->ytile
;
290 /* Say what happen: use mp_msg(...)? */
291 if ( mp_msg_test(MSGT_VFILTER
,MSGL_V
) ) {
292 printf("vf_tile: tiling %d * %d, output every %d frames\n",
296 printf("vf_tile: start pixel %d, delta pixel %d\n",
299 // printf("vf_tile: background 0x%x\n",
305 const vf_info_t vf_info_tile
= {
306 "Make a single image tiling x/y images",