| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
#ifdef HAVE_CONFIG_H |
|---|
| 29 |
# include "config.h" |
|---|
| 30 |
#endif |
|---|
| 31 |
|
|---|
| 32 |
#include <vlc_common.h> |
|---|
| 33 |
#include <vlc_plugin.h> |
|---|
| 34 |
#include <vlc_sout.h> |
|---|
| 35 |
#include <vlc_vout.h> |
|---|
| 36 |
#include "vlc_image.h" |
|---|
| 37 |
|
|---|
| 38 |
#include "vlc_filter.h" |
|---|
| 39 |
#include "filter_picture.h" |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
static int Create ( vlc_object_t * ); |
|---|
| 45 |
static void Destroy ( vlc_object_t * ); |
|---|
| 46 |
|
|---|
| 47 |
static picture_t *Filter( filter_t *, picture_t * ); |
|---|
| 48 |
static void FilterErase( filter_t *, picture_t *, picture_t * ); |
|---|
| 49 |
static int EraseCallback( vlc_object_t *, char const *, |
|---|
| 50 |
vlc_value_t, vlc_value_t, void * ); |
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
#define MASK_TEXT N_("Image mask") |
|---|
| 56 |
#define MASK_LONGTEXT N_("Image mask. Pixels with an alpha value greater than 50% will be erased.") |
|---|
| 57 |
|
|---|
| 58 |
#define POSX_TEXT N_("X coordinate") |
|---|
| 59 |
#define POSX_LONGTEXT N_("X coordinate of the mask.") |
|---|
| 60 |
#define POSY_TEXT N_("Y coordinate") |
|---|
| 61 |
#define POSY_LONGTEXT N_("Y coordinate of the mask.") |
|---|
| 62 |
|
|---|
| 63 |
#define CFG_PREFIX "erase-" |
|---|
| 64 |
|
|---|
| 65 |
vlc_module_begin(); |
|---|
| 66 |
set_description( N_("Erase video filter") ); |
|---|
| 67 |
set_shortname( N_( "Erase" )); |
|---|
| 68 |
set_capability( "video filter2", 0 ); |
|---|
| 69 |
set_category( CAT_VIDEO ); |
|---|
| 70 |
set_subcategory( SUBCAT_VIDEO_VFILTER ); |
|---|
| 71 |
|
|---|
| 72 |
add_file( CFG_PREFIX "mask", NULL, NULL, |
|---|
| 73 |
MASK_TEXT, MASK_LONGTEXT, false ); |
|---|
| 74 |
add_integer( CFG_PREFIX "x", 0, NULL, POSX_TEXT, POSX_LONGTEXT, false ); |
|---|
| 75 |
add_integer( CFG_PREFIX "y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, false ); |
|---|
| 76 |
|
|---|
| 77 |
add_shortcut( "erase" ); |
|---|
| 78 |
set_callbacks( Create, Destroy ); |
|---|
| 79 |
vlc_module_end(); |
|---|
| 80 |
|
|---|
| 81 |
static const char *const ppsz_filter_options[] = { |
|---|
| 82 |
"mask", "x", "y", NULL |
|---|
| 83 |
}; |
|---|
| 84 |
|
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
struct filter_sys_t |
|---|
| 89 |
{ |
|---|
| 90 |
int i_x; |
|---|
| 91 |
int i_y; |
|---|
| 92 |
picture_t *p_mask; |
|---|
| 93 |
vlc_mutex_t lock; |
|---|
| 94 |
}; |
|---|
| 95 |
|
|---|
| 96 |
static void LoadMask( filter_t *p_filter, const char *psz_filename ) |
|---|
| 97 |
{ |
|---|
| 98 |
image_handler_t *p_image; |
|---|
| 99 |
video_format_t fmt_in, fmt_out; |
|---|
| 100 |
picture_t *p_old_mask = p_filter->p_sys->p_mask; |
|---|
| 101 |
memset( &fmt_in, 0, sizeof( video_format_t ) ); |
|---|
| 102 |
memset( &fmt_out, 0, sizeof( video_format_t ) ); |
|---|
| 103 |
fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A'); |
|---|
| 104 |
p_image = image_HandlerCreate( p_filter ); |
|---|
| 105 |
p_filter->p_sys->p_mask = |
|---|
| 106 |
image_ReadUrl( p_image, psz_filename, &fmt_in, &fmt_out ); |
|---|
| 107 |
if( p_filter->p_sys->p_mask ) |
|---|
| 108 |
{ |
|---|
| 109 |
if( p_old_mask ) |
|---|
| 110 |
picture_Release( p_old_mask ); |
|---|
| 111 |
} |
|---|
| 112 |
else if( p_old_mask ) |
|---|
| 113 |
{ |
|---|
| 114 |
p_filter->p_sys->p_mask = p_old_mask; |
|---|
| 115 |
msg_Err( p_filter, "Error while loading new mask. Keeping old mask." ); |
|---|
| 116 |
} |
|---|
| 117 |
image_HandlerDelete( p_image ); |
|---|
| 118 |
} |
|---|
| 119 |
|
|---|
| 120 |
|
|---|
| 121 |
|
|---|
| 122 |
|
|---|
| 123 |
static int Create( vlc_object_t *p_this ) |
|---|
| 124 |
{ |
|---|
| 125 |
filter_t *p_filter = (filter_t *)p_this; |
|---|
| 126 |
filter_sys_t *p_sys; |
|---|
| 127 |
char *psz_filename; |
|---|
| 128 |
|
|---|
| 129 |
switch( p_filter->fmt_in.video.i_chroma ) |
|---|
| 130 |
{ |
|---|
| 131 |
case VLC_FOURCC('I','4','2','0'): |
|---|
| 132 |
case VLC_FOURCC('I','Y','U','V'): |
|---|
| 133 |
case VLC_FOURCC('J','4','2','0'): |
|---|
| 134 |
case VLC_FOURCC('Y','V','1','2'): |
|---|
| 135 |
|
|---|
| 136 |
case VLC_FOURCC('I','4','2','2'): |
|---|
| 137 |
case VLC_FOURCC('J','4','2','2'): |
|---|
| 138 |
break; |
|---|
| 139 |
|
|---|
| 140 |
default: |
|---|
| 141 |
msg_Err( p_filter, "Unsupported input chroma (%4s)", |
|---|
| 142 |
(char*)&(p_filter->fmt_in.video.i_chroma) ); |
|---|
| 143 |
return VLC_EGENERIC; |
|---|
| 144 |
} |
|---|
| 145 |
|
|---|
| 146 |
|
|---|
| 147 |
p_filter->p_sys = malloc( sizeof( filter_sys_t ) ); |
|---|
| 148 |
if( p_filter->p_sys == NULL ) |
|---|
| 149 |
return VLC_ENOMEM; |
|---|
| 150 |
p_sys = p_filter->p_sys; |
|---|
| 151 |
|
|---|
| 152 |
p_filter->pf_video_filter = Filter; |
|---|
| 153 |
|
|---|
| 154 |
config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options, |
|---|
| 155 |
p_filter->p_cfg ); |
|---|
| 156 |
|
|---|
| 157 |
psz_filename = |
|---|
| 158 |
var_CreateGetNonEmptyStringCommand( p_filter, CFG_PREFIX "mask" ); |
|---|
| 159 |
|
|---|
| 160 |
if( !psz_filename ) |
|---|
| 161 |
{ |
|---|
| 162 |
msg_Err( p_filter, "Missing 'mask' option value." ); |
|---|
| 163 |
return VLC_EGENERIC; |
|---|
| 164 |
} |
|---|
| 165 |
|
|---|
| 166 |
p_sys->p_mask = NULL; |
|---|
| 167 |
LoadMask( p_filter, psz_filename ); |
|---|
| 168 |
free( psz_filename ); |
|---|
| 169 |
p_sys->i_x = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "x" ); |
|---|
| 170 |
p_sys->i_y = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "y" ); |
|---|
| 171 |
|
|---|
| 172 |
var_AddCallback( p_filter, CFG_PREFIX "x", EraseCallback, p_sys ); |
|---|
| 173 |
var_AddCallback( p_filter, CFG_PREFIX "y", EraseCallback, p_sys ); |
|---|
| 174 |
var_AddCallback( p_filter, CFG_PREFIX "mask", EraseCallback, p_sys ); |
|---|
| 175 |
|
|---|
| 176 |
vlc_mutex_init( &p_sys->lock ); |
|---|
| 177 |
|
|---|
| 178 |
return VLC_SUCCESS; |
|---|
| 179 |
} |
|---|
| 180 |
|
|---|
| 181 |
|
|---|
| 182 |
|
|---|
| 183 |
|
|---|
| 184 |
static void Destroy( vlc_object_t *p_this ) |
|---|
| 185 |
{ |
|---|
| 186 |
filter_t *p_filter = (filter_t *)p_this; |
|---|
| 187 |
filter_sys_t *p_sys = p_filter->p_sys; |
|---|
| 188 |
if( p_sys->p_mask ) |
|---|
| 189 |
picture_Release( p_sys->p_mask ); |
|---|
| 190 |
|
|---|
| 191 |
vlc_mutex_destroy( &p_sys->lock ); |
|---|
| 192 |
|
|---|
| 193 |
free( p_filter->p_sys ); |
|---|
| 194 |
} |
|---|
| 195 |
|
|---|
| 196 |
|
|---|
| 197 |
|
|---|
| 198 |
|
|---|
| 199 |
static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ) |
|---|
| 200 |
{ |
|---|
| 201 |
picture_t *p_outpic; |
|---|
| 202 |
|
|---|
| 203 |
if( !p_pic ) return NULL; |
|---|
| 204 |
|
|---|
| 205 |
p_outpic = filter_NewPicture( p_filter ); |
|---|
| 206 |
if( !p_outpic ) |
|---|
| 207 |
{ |
|---|
| 208 |
picture_Release( p_pic ); |
|---|
| 209 |
return NULL; |
|---|
| 210 |
} |
|---|
| 211 |
|
|---|
| 212 |
|
|---|
| 213 |
FilterErase( p_filter, p_pic, p_outpic ); |
|---|
| 214 |
|
|---|
| 215 |
return CopyInfoAndRelease( p_outpic, p_pic ); |
|---|
| 216 |
} |
|---|
| 217 |
|
|---|
| 218 |
|
|---|
| 219 |
|
|---|
| 220 |
|
|---|
| 221 |
static void FilterErase( filter_t *p_filter, picture_t *p_inpic, |
|---|
| 222 |
picture_t *p_outpic ) |
|---|
| 223 |
{ |
|---|
| 224 |
filter_sys_t *p_sys = p_filter->p_sys; |
|---|
| 225 |
|
|---|
| 226 |
int i_plane; |
|---|
| 227 |
|
|---|
| 228 |
const int i_mask_pitch = p_sys->p_mask->A_PITCH; |
|---|
| 229 |
const int i_mask_visible_pitch = p_sys->p_mask->p[A_PLANE].i_visible_pitch; |
|---|
| 230 |
const int i_mask_visible_lines = p_sys->p_mask->p[A_PLANE].i_visible_lines; |
|---|
| 231 |
|
|---|
| 232 |
for( i_plane = 0; i_plane < p_inpic->i_planes; i_plane++ ) |
|---|
| 233 |
{ |
|---|
| 234 |
const int i_pitch = p_inpic->p[i_plane].i_pitch; |
|---|
| 235 |
const int i_2pitch = i_pitch<<1; |
|---|
| 236 |
const int i_visible_pitch = p_inpic->p[i_plane].i_visible_pitch; |
|---|
| 237 |
const int i_lines = p_inpic->p[i_plane].i_lines; |
|---|
| 238 |
const int i_visible_lines = p_inpic->p[i_plane].i_visible_lines; |
|---|
| 239 |
|
|---|
| 240 |
uint8_t *p_inpix = p_inpic->p[i_plane].p_pixels; |
|---|
| 241 |
uint8_t *p_outpix = p_outpic->p[i_plane].p_pixels; |
|---|
| 242 |
uint8_t *p_mask = p_sys->p_mask->A_PIXELS; |
|---|
| 243 |
|
|---|
| 244 |
int i_x = p_sys->i_x, |
|---|
| 245 |
i_y = p_sys->i_y; |
|---|
| 246 |
int x, y; |
|---|
| 247 |
int i_height = i_mask_visible_lines; |
|---|
| 248 |
int i_width = i_mask_visible_pitch; |
|---|
| 249 |
|
|---|
| 250 |
const bool b_line_factor = ( i_plane && |
|---|
| 251 |
!( p_inpic->format.i_chroma == VLC_FOURCC('I','4','2','2') |
|---|
| 252 |
|| p_inpic->format.i_chroma == VLC_FOURCC('J','4','2','2') ) ); |
|---|
| 253 |
|
|---|
| 254 |
if( i_plane ) |
|---|
| 255 |
{ |
|---|
| 256 |
i_width >>= 1; |
|---|
| 257 |
i_x >>= 1; |
|---|
| 258 |
} |
|---|
| 259 |
if( b_line_factor ) |
|---|
| 260 |
{ |
|---|
| 261 |
i_height >>= 1; |
|---|
| 262 |
i_y >>= 1; |
|---|
| 263 |
} |
|---|
| 264 |
i_height = __MIN( i_visible_lines - i_y, i_height ); |
|---|
| 265 |
i_width = __MIN( i_visible_pitch - i_x, i_width ); |
|---|
| 266 |
|
|---|
| 267 |
|
|---|
| 268 |
vlc_memcpy( p_outpix, p_inpix, i_pitch * i_lines ); |
|---|
| 269 |
|
|---|
| 270 |
|
|---|
| 271 |
p_outpix = p_outpic->p[i_plane].p_pixels + i_y*i_pitch + i_x; |
|---|
| 272 |
for( y = 0; y < i_height; |
|---|
| 273 |
y++, p_mask += i_mask_pitch, p_outpix += i_pitch ) |
|---|
| 274 |
{ |
|---|
| 275 |
uint8_t prev, next = 0; |
|---|
| 276 |
int prev_x = -1, next_x = -2; |
|---|
| 277 |
int quot = 0; |
|---|
| 278 |
|
|---|
| 279 |
|
|---|
| 280 |
|
|---|
| 281 |
if( i_x ) |
|---|
| 282 |
{ |
|---|
| 283 |
|
|---|
| 284 |
|
|---|
| 285 |
prev = *(p_outpix-1); |
|---|
| 286 |
} |
|---|
| 287 |
else if( y || i_y ) |
|---|
| 288 |
{ |
|---|
| 289 |
|
|---|
| 290 |
|
|---|
| 291 |
prev = *(p_outpix-i_pitch); |
|---|
| 292 |
} |
|---|
| 293 |
else |
|---|
| 294 |
{ |
|---|
| 295 |
|
|---|
| 296 |
|
|---|
| 297 |
|
|---|
| 298 |
|
|---|
| 299 |
prev = 0xff; |
|---|
| 300 |
} |
|---|
| 301 |
|
|---|
| 302 |
for( x = 0; x < i_width; x++ ) |
|---|
| 303 |
{ |
|---|
| 304 |
if( p_mask[i_plane?x<<1:x] > 127 ) |
|---|
| 305 |
{ |
|---|
| 306 |
|
|---|
| 307 |
if( next_x <= prev_x ) |
|---|
| 308 |
{ |
|---|
| 309 |
int x0; |
|---|
| 310 |
|
|---|
| 311 |
|
|---|
| 312 |
for( x0 = x; x0 < i_width; x0++ ) |
|---|
| 313 |
{ |
|---|
| 314 |
if( p_mask[i_plane?x0<<1:x0] <= 127 ) |
|---|
| 315 |
{ |
|---|
| 316 |
|
|---|
| 317 |
next_x = x0; |
|---|
| 318 |
next = p_outpix[x0]; |
|---|
| 319 |
break; |
|---|
| 320 |
} |
|---|
| 321 |
} |
|---|
| 322 |
if( next_x <= prev_x ) |
|---|
| 323 |
{ |
|---|
| 324 |
|
|---|
| 325 |
|
|---|
| 326 |
if( x0 == x ) x0++; |
|---|
| 327 |
if( x0 < i_visible_pitch ) |
|---|
| 328 |
{ |
|---|
| 329 |
|
|---|
| 330 |
|
|---|
| 331 |
|
|---|
| 332 |
|
|---|
| 333 |
next_x = x0; |
|---|
| 334 |
next = p_outpix[x0]; |
|---|
| 335 |
} |
|---|
| 336 |
else |
|---|
| 337 |
{ |
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
|
|---|
| 341 |
|
|---|
| 342 |
next_x = x0; |
|---|
| 343 |
next = prev; |
|---|
| 344 |
} |
|---|
| 345 |
} |
|---|
| 346 |
if( !( i_x || y || i_y ) ) |
|---|
| 347 |
|
|---|
| 348 |
|
|---|
| 349 |
|
|---|
| 350 |
|
|---|
| 351 |
prev = next; |
|---|
| 352 |
|
|---|
| 353 |
|
|---|
| 354 |
quot = ((next-prev)<<16)/(next_x-prev_x); |
|---|
| 355 |
} |
|---|
| 356 |
|
|---|
| 357 |
p_outpix[x] = prev + (((x-prev_x)*quot+(1<<16))>>16); |
|---|
| 358 |
} |
|---|
| 359 |
else |
|---|
| 360 |
{ |
|---|
| 361 |
|
|---|
| 362 |
|
|---|
| 363 |
prev = p_outpix[x]; |
|---|
| 364 |
prev_x = x; |
|---|
| 365 |
} |
|---|
| 366 |
} |
|---|
| 367 |
} |
|---|
| 368 |
|
|---|
| 369 |
|
|---|
| 370 |
p_mask = p_sys->p_mask->A_PIXELS; |
|---|
| 371 |
i_height = b_line_factor ? i_mask_visible_lines>>1 |
|---|
| 372 |
: i_mask_visible_lines; |
|---|
| 373 |
|
|---|
| 374 |
|
|---|
| 375 |
i_height = __MIN( i_visible_lines - i_y - 2, i_height ); |
|---|
| 376 |
|
|---|
| 377 |
|
|---|
| 378 |
y = __MAX(i_y,2); |
|---|
| 379 |
p_outpix = p_outpic->p[i_plane].p_pixels + (i_y+y)*i_pitch + i_x; |
|---|
| 380 |
for( ; y < i_height; y++, p_mask += i_mask_pitch, p_outpix += i_pitch ) |
|---|
| 381 |
{ |
|---|
| 382 |
for( x = 0; x < i_width; x++ ) |
|---|
| 383 |
{ |
|---|
| 384 |
if( p_mask[i_plane?x<<1:x] > 127 ) |
|---|
| 385 |
{ |
|---|
| 386 |
|
|---|
| 387 |
p_outpix[x] = |
|---|
| 388 |
( (p_outpix[x-i_2pitch]<<1) |
|---|
| 389 |
+ (p_outpix[x-i_pitch ]<<2) |
|---|
| 390 |
+ (p_outpix[x ]<<2) |
|---|
| 391 |
+ (p_outpix[x+i_pitch ]<<2) |
|---|
| 392 |
+ (p_outpix[x+i_2pitch]<<1) )>>4; |
|---|
| 393 |
} |
|---|
| 394 |
} |
|---|
| 395 |
} |
|---|
| 396 |
} |
|---|
| 397 |
} |
|---|
| 398 |
|
|---|
| 399 |
static int EraseCallback( vlc_object_t *p_this, char const *psz_var, |
|---|
| 400 |
vlc_value_t oldval, vlc_value_t newval, void *p_data ) |
|---|
| 401 |
{ |
|---|
| 402 |
VLC_UNUSED(oldval); |
|---|
| 403 |
filter_sys_t *p_sys = (filter_sys_t *)p_data; |
|---|
| 404 |
|
|---|
| 405 |
if( !strcmp( psz_var, CFG_PREFIX "x" ) ) |
|---|
| 406 |
{ |
|---|
| 407 |
vlc_mutex_lock( &p_sys->lock ); |
|---|
| 408 |
p_sys->i_x = newval.i_int; |
|---|
| 409 |
vlc_mutex_unlock( &p_sys->lock ); |
|---|
| 410 |
} |
|---|
| 411 |
else if( !strcmp( psz_var, CFG_PREFIX "y" ) ) |
|---|
| 412 |
{ |
|---|
| 413 |
vlc_mutex_lock( &p_sys->lock ); |
|---|
| 414 |
p_sys->i_y = newval.i_int; |
|---|
| 415 |
vlc_mutex_unlock( &p_sys->lock ); |
|---|
| 416 |
} |
|---|
| 417 |
else if( !strcmp( psz_var, CFG_PREFIX "mask" ) ) |
|---|
| 418 |
{ |
|---|
| 419 |
vlc_mutex_lock( &p_sys->lock ); |
|---|
| 420 |
LoadMask( (filter_t*)p_this, newval.psz_string ); |
|---|
| 421 |
vlc_mutex_unlock( &p_sys->lock ); |
|---|
| 422 |
} |
|---|
| 423 |
else |
|---|
| 424 |
{ |
|---|
| 425 |
msg_Warn( p_this, "Unknown callback command." ); |
|---|
| 426 |
} |
|---|
| 427 |
return VLC_SUCCESS; |
|---|
| 428 |
} |
|---|