Mercurial > mplayer.hg
annotate libmpcodecs/vf_delogo.c @ 36704:a37f9abea303
Add language to audio track information.
author | ib |
---|---|
date | Fri, 07 Feb 2014 19:07:39 +0000 |
parents | a6a38b385d24 |
children |
rev | line source |
---|---|
10809 | 1 /* |
26727 | 2 * Copyright (C) 2002 Jindrich Makovicka <makovick@gmail.com> |
3 * | |
4 * This file is part of MPlayer. | |
5 * | |
6 * MPlayer is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * MPlayer is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License along | |
17 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
19 */ | |
10809 | 20 |
21 /* A very simple tv station logo remover */ | |
22 | |
23 #include <stdio.h> | |
24 #include <stdlib.h> | |
25 #include <string.h> | |
26 #include <inttypes.h> | |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
27 #include <limits.h> |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
28 #include <errno.h> |
10809 | 29 #include <math.h> |
30 | |
17012 | 31 #include "mp_msg.h" |
32 #include "cpudetect.h" | |
10809 | 33 #include "img_format.h" |
34 #include "mp_image.h" | |
35 #include "vf.h" | |
17012 | 36 #include "libvo/fastmemcpy.h" |
10809 | 37 |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
38 #include "m_option.h" |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
39 #include "m_struct.h" |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
40 |
10809 | 41 //===========================================================================// |
42 | |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
43 static struct vf_priv_s { |
10809 | 44 unsigned int outfmt; |
45 int xoff, yoff, lw, lh, band, show; | |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
46 const char *file; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
47 struct timed_rectangle { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
48 int ts, x, y, w, h, b; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
49 } *timed_rect; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
50 int n_timed_rect; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
51 int cur_timed_rect; |
22027 | 52 } const vf_priv_dflt = { |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
53 0, |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
54 0, 0, 0, 0, 0, 0, |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
55 NULL, NULL, 0, 0, |
10809 | 56 }; |
57 | |
58 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) | |
59 #define MAX(a,b) (((a) > (b)) ? (a) : (b)) | |
60 | |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
61 /** |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
62 * Adjust the coordinates to suit the band width |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
63 * Also print a notice in verbose mode |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
64 */ |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
65 static void fix_band(struct vf_priv_s *p) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
66 { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
67 p->show = 0; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
68 if (p->band < 0) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
69 p->band = 4; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
70 p->show = 1; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
71 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
72 p->lw += p->band*2; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
73 p->lh += p->band*2; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
74 p->xoff -= p->band; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
75 p->yoff -= p->band; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
76 mp_msg(MSGT_VFILTER, MSGL_V, "delogo: %d x %d, %d x %d, band = %d\n", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
77 p->xoff, p->yoff, p->lw, p->lh, p->band); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
78 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
79 |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
80 static void update_sub(struct vf_priv_s *p, double pts) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
81 { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
82 int ipts = pts * 1000; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
83 int tr = p->cur_timed_rect; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
84 while (tr < p->n_timed_rect - 1 && ipts >= p->timed_rect[tr + 1].ts) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
85 tr++; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
86 while (tr >= 0 && ipts < p->timed_rect[tr].ts) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
87 tr--; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
88 if (tr == p->cur_timed_rect) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
89 return; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
90 p->cur_timed_rect = tr; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
91 if (tr >= 0) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
92 p->xoff = p->timed_rect[tr].x; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
93 p->yoff = p->timed_rect[tr].y; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
94 p->lw = p->timed_rect[tr].w; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
95 p->lh = p->timed_rect[tr].h; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
96 p->band = p->timed_rect[tr].b; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
97 } else { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
98 p->xoff = p->yoff = p->lw = p->lh = p->band = 0; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
99 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
100 fix_band(p); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
101 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
102 |
10809 | 103 static void delogo(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int width, int height, |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
104 int logo_x, int logo_y, int logo_w, int logo_h, int band, int show, int direct) { |
10809 | 105 int y, x; |
106 int interp, dist; | |
107 uint8_t *xdst, *xsrc; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29087
diff
changeset
|
108 |
10809 | 109 uint8_t *topleft, *botleft, *topright; |
110 int xclipl, xclipr, yclipt, yclipb; | |
10811 | 111 int logo_x1, logo_x2, logo_y1, logo_y2; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29087
diff
changeset
|
112 |
10809 | 113 xclipl = MAX(-logo_x, 0); |
114 xclipr = MAX(logo_x+logo_w-width, 0); | |
115 yclipt = MAX(-logo_y, 0); | |
116 yclipb = MAX(logo_y+logo_h-height, 0); | |
117 | |
10811 | 118 logo_x1 = logo_x + xclipl; |
119 logo_x2 = logo_x + logo_w - xclipr; | |
120 logo_y1 = logo_y + yclipt; | |
121 logo_y2 = logo_y + logo_h - yclipb; | |
10809 | 122 |
10811 | 123 topleft = src+logo_y1*srcStride+logo_x1; |
11029 | 124 topright = src+logo_y1*srcStride+logo_x2-1; |
10811 | 125 botleft = src+(logo_y2-1)*srcStride+logo_x1; |
126 | |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
127 if (!direct) memcpy_pic(dst, src, width, height, dstStride, srcStride); |
10811 | 128 |
129 dst += (logo_y1+1)*dstStride; | |
130 src += (logo_y1+1)*srcStride; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29087
diff
changeset
|
131 |
10811 | 132 for(y = logo_y1+1; y < logo_y2-1; y++) |
10809 | 133 { |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
134 for (x = logo_x1+1, xdst = dst+logo_x1+1, xsrc = src+logo_x1+1; x < logo_x2-1; x++, xdst++, xsrc++) { |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
135 interp = ((topleft[srcStride*(y-logo_y-yclipt)] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
136 + topleft[srcStride*(y-logo_y-1-yclipt)] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
137 + topleft[srcStride*(y-logo_y+1-yclipt)])*(logo_w-(x-logo_x))/logo_w |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
138 + (topright[srcStride*(y-logo_y-yclipt)] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
139 + topright[srcStride*(y-logo_y-1-yclipt)] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
140 + topright[srcStride*(y-logo_y+1-yclipt)])*(x-logo_x)/logo_w |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
141 + (topleft[x-logo_x-xclipl] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
142 + topleft[x-logo_x-1-xclipl] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
143 + topleft[x-logo_x+1-xclipl])*(logo_h-(y-logo_y))/logo_h |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
144 + (botleft[x-logo_x-xclipl] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
145 + botleft[x-logo_x-1-xclipl] |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
146 + botleft[x-logo_x+1-xclipl])*(y-logo_y)/logo_h |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
147 )/6; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
148 /* interp = (topleft[srcStride*(y-logo_y)]*(logo_w-(x-logo_x))/logo_w |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
149 + topright[srcStride*(y-logo_y)]*(x-logo_x)/logo_w |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
150 + topleft[x-logo_x]*(logo_h-(y-logo_y))/logo_h |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
151 + botleft[x-logo_x]*(y-logo_y)/logo_h |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
152 )/2;*/ |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
153 if (y >= logo_y+band && y < logo_y+logo_h-band && x >= logo_x+band && x < logo_x+logo_w-band) { |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
154 *xdst = interp; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
155 } else { |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
156 dist = 0; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
157 if (x < logo_x+band) dist = MAX(dist, logo_x-x+band); |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
158 else if (x >= logo_x+logo_w-band) dist = MAX(dist, x-(logo_x+logo_w-1-band)); |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
159 if (y < logo_y+band) dist = MAX(dist, logo_y-y+band); |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
160 else if (y >= logo_y+logo_h-band) dist = MAX(dist, y-(logo_y+logo_h-1-band)); |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
161 *xdst = (*xsrc*dist + interp*(band-dist))/band; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
162 if (show && (dist == band-1)) *xdst = 0; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
163 } |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
164 } |
10809 | 165 |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
166 dst+= dstStride; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
167 src+= srcStride; |
10809 | 168 } |
169 } | |
170 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
171 static int config(struct vf_instance *vf, |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
172 int width, int height, int d_width, int d_height, |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
173 unsigned int flags, unsigned int outfmt){ |
10809 | 174 |
175 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); | |
176 } | |
177 | |
178 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
179 static void get_image(struct vf_instance *vf, mp_image_t *mpi){ |
10809 | 180 if(mpi->flags&MP_IMGFLAG_PRESERVE) return; // don't change |
181 if(mpi->imgfmt!=vf->priv->outfmt) return; // colorspace differ | |
182 // ok, we can do pp in-place (or pp disabled): | |
35108 | 183 mpi->priv = |
10809 | 184 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
185 mpi->type, mpi->flags, mpi->w, mpi->h); |
10809 | 186 mpi->planes[0]=vf->dmpi->planes[0]; |
187 mpi->stride[0]=vf->dmpi->stride[0]; | |
188 mpi->width=vf->dmpi->width; | |
189 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
190 mpi->planes[1]=vf->dmpi->planes[1]; | |
191 mpi->planes[2]=vf->dmpi->planes[2]; | |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
192 mpi->stride[1]=vf->dmpi->stride[1]; |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
193 mpi->stride[2]=vf->dmpi->stride[2]; |
10809 | 194 } |
195 mpi->flags|=MP_IMGFLAG_DIRECT; | |
196 } | |
197 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
198 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){ |
10809 | 199 mp_image_t *dmpi; |
200 | |
35108 | 201 if(mpi->flags&MP_IMGFLAG_DIRECT) { |
202 vf->dmpi = mpi->priv; | |
35109
a6a38b385d24
For consistency clear mpi->priv after it was used.
reimar
parents:
35108
diff
changeset
|
203 mpi->priv = NULL; |
35108 | 204 } else { |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
205 // no DR, so get a new image! hope we'll get DR buffer: |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
206 vf->dmpi=vf_get_image(vf->next,vf->priv->outfmt, |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
207 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
208 mpi->w,mpi->h); |
10809 | 209 } |
210 dmpi= vf->dmpi; | |
211 | |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
212 if (vf->priv->timed_rect) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
213 update_sub(vf->priv, pts); |
10809 | 214 delogo(dmpi->planes[0], mpi->planes[0], dmpi->stride[0], mpi->stride[0], mpi->w, mpi->h, |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
215 vf->priv->xoff, vf->priv->yoff, vf->priv->lw, vf->priv->lh, vf->priv->band, vf->priv->show, |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
216 mpi->flags&MP_IMGFLAG_DIRECT); |
10809 | 217 delogo(dmpi->planes[1], mpi->planes[1], dmpi->stride[1], mpi->stride[1], mpi->w/2, mpi->h/2, |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
218 vf->priv->xoff/2, vf->priv->yoff/2, vf->priv->lw/2, vf->priv->lh/2, vf->priv->band/2, vf->priv->show, |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
219 mpi->flags&MP_IMGFLAG_DIRECT); |
10809 | 220 delogo(dmpi->planes[2], mpi->planes[2], dmpi->stride[2], mpi->stride[2], mpi->w/2, mpi->h/2, |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
221 vf->priv->xoff/2, vf->priv->yoff/2, vf->priv->lw/2, vf->priv->lh/2, vf->priv->band/2, vf->priv->show, |
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
222 mpi->flags&MP_IMGFLAG_DIRECT); |
10809 | 223 |
224 vf_clone_mpi_attributes(dmpi, mpi); | |
225 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17367
diff
changeset
|
226 return vf_next_put_image(vf,dmpi, pts); |
10809 | 227 } |
228 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
229 static void uninit(struct vf_instance *vf){ |
10809 | 230 if(!vf->priv) return; |
231 | |
232 free(vf->priv); | |
233 vf->priv=NULL; | |
234 } | |
235 | |
236 //===========================================================================// | |
237 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30638
diff
changeset
|
238 static int query_format(struct vf_instance *vf, unsigned int fmt){ |
10809 | 239 switch(fmt) |
240 { | |
241 case IMGFMT_YV12: | |
242 case IMGFMT_I420: | |
243 case IMGFMT_IYUV: | |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
244 return vf_next_query_format(vf,vf->priv->outfmt); |
10809 | 245 } |
246 return 0; | |
247 } | |
248 | |
30708 | 249 static const unsigned int fmt_list[]={ |
10809 | 250 IMGFMT_YV12, |
251 IMGFMT_I420, | |
252 IMGFMT_IYUV, | |
253 0 | |
254 }; | |
255 | |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
256 static int load_timed_rectangles(struct vf_priv_s *delogo) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
257 { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
258 FILE *f; |
33410 | 259 char line[2048]; |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
260 int lineno = 0, p; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
261 double ts, last_ts = 0; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
262 struct timed_rectangle *rect = NULL, *nr; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
263 int n_rect = 0, alloc_rect = 0; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
264 |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
265 f = fopen(delogo->file, "r"); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
266 if (!f) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
267 mp_msg(MSGT_VFILTER, MSGL_ERR, "delogo: unable to load %s: %s\n", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
268 delogo->file, strerror(errno)); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
269 return -1; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
270 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
271 while (fgets(line, sizeof(line), f)) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
272 lineno++; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
273 if (*line == '#' || *line == '\n') |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
274 continue; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
275 if (n_rect == alloc_rect) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
276 if (alloc_rect > INT_MAX / 2 / (int)sizeof(*rect)) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
277 mp_msg(MSGT_VFILTER, MSGL_WARN, |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
278 "delogo: too many rectangles\n"); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
279 goto load_error; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
280 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
281 alloc_rect = alloc_rect ? 2 * alloc_rect : 256; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
282 nr = realloc(rect, alloc_rect * sizeof(*rect)); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
283 if (!nr) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
284 mp_msg(MSGT_VFILTER, MSGL_WARN, "delogo: out of memory\n"); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
285 goto load_error; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
286 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
287 rect = nr; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
288 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
289 nr = rect + n_rect; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
290 memset(nr, 0, sizeof(*nr)); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
291 p = sscanf(line, "%lf %d:%d:%d:%d:%d", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
292 &ts, &nr->x, &nr->y, &nr->w, &nr->h, &nr->b); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
293 if ((p == 2 && !nr->x) || p == 5 || p == 6) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
294 if (ts <= last_ts) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
295 mp_msg(MSGT_VFILTER, MSGL_WARN, "delogo: %s:%d: wrong time\n", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
296 delogo->file, lineno); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
297 nr->ts = 1000 * ts + 0.5; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
298 n_rect++; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
299 } else { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
300 mp_msg(MSGT_VFILTER, MSGL_WARN, "delogo: %s:%d: syntax error\n", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
301 delogo->file, lineno); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
302 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
303 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
304 fclose(f); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
305 if (!n_rect) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
306 mp_msg(MSGT_VFILTER, MSGL_ERR, "delogo: %s: no rectangles found\n", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
307 delogo->file); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
308 free(rect); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
309 return -1; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
310 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
311 nr = realloc(rect, n_rect * sizeof(*rect)); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
312 if (nr) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
313 rect = nr; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
314 delogo->timed_rect = rect; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
315 delogo->n_timed_rect = n_rect; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
316 return 0; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
317 |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
318 load_error: |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
319 free(rect); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
320 fclose(f); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
321 return -1; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
322 } |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
323 |
30638
a7b908875c14
Rename open() vf initialization function to vf_open().
diego
parents:
29915
diff
changeset
|
324 static int vf_open(vf_instance_t *vf, char *args){ |
10809 | 325 vf->config=config; |
326 vf->put_image=put_image; | |
327 vf->get_image=get_image; | |
328 vf->query_format=query_format; | |
329 vf->uninit=uninit; | |
330 | |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
331 if (vf->priv->file) { |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
332 if (load_timed_rectangles(vf->priv)) |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
333 return 0; |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
334 mp_msg(MSGT_VFILTER, MSGL_V, "delogo: %d from %s\n", |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
335 vf->priv->n_timed_rect, vf->priv->file); |
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
336 vf->priv->cur_timed_rect = -1; |
10809 | 337 } |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
338 fix_band(vf->priv); |
10809 | 339 |
340 // check csp: | |
341 vf->priv->outfmt=vf_match_csp(&vf->next,fmt_list,IMGFMT_YV12); | |
342 if(!vf->priv->outfmt) | |
343 { | |
32702
7af3e6f901fd
Convert some tabs to whitespace to allow using MPlayer filter sourcecode in FFmpeg.
cehoyos
parents:
30708
diff
changeset
|
344 uninit(vf); |
10809 | 345 return 0; // no csp match :( |
346 } | |
347 | |
348 return 1; | |
349 } | |
350 | |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
351 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f) |
30707 | 352 static const m_option_t vf_opts_fields[] = { |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
353 { "x", ST_OFF(xoff), CONF_TYPE_INT, 0, 0, 0, NULL }, |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
354 { "y", ST_OFF(yoff), CONF_TYPE_INT, 0, 0, 0, NULL }, |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
355 { "w", ST_OFF(lw), CONF_TYPE_INT, 0, 0, 0, NULL }, |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
356 { "h", ST_OFF(lh), CONF_TYPE_INT, 0, 0, 0, NULL }, |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
357 { "t", ST_OFF(band), CONF_TYPE_INT, 0, 0, 0, NULL }, |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
358 { "band", ST_OFF(band), CONF_TYPE_INT, 0, 0, 0, NULL }, // alias |
33400
f18abad8054c
vf_delogo: allow to change the rectangle based on the time
cigaes
parents:
32702
diff
changeset
|
359 { "file", ST_OFF(file), CONF_TYPE_STRING, 0, 0, 0, NULL }, |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
360 { NULL, NULL, 0, 0, 0, 0, NULL } |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
361 }; |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
362 |
30707 | 363 static const m_struct_t vf_opts = { |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
364 "delogo", |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
365 sizeof(struct vf_priv_s), |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
366 &vf_priv_dflt, |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
367 vf_opts_fields |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
368 }; |
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
369 |
25221 | 370 const vf_info_t vf_info_delogo = { |
10809 | 371 "simple logo remover", |
372 "delogo", | |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
373 "Jindrich Makovicka, Alex Beregszaszi", |
10809 | 374 "", |
30638
a7b908875c14
Rename open() vf initialization function to vf_open().
diego
parents:
29915
diff
changeset
|
375 vf_open, |
10816
e9dc9b0b16fa
added new config system support and fixed some bugs (altought sanity checks are needed in delogo as it segfaults easily with w/h out of range)
alex
parents:
10811
diff
changeset
|
376 &vf_opts |
10809 | 377 }; |
378 | |
379 //===========================================================================// |