forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter_chain.c
518 lines (440 loc) · 14 KB
/
filter_chain.c
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/*****************************************************************************
* filter_chain.c : Handle chains of filter_t objects.
*****************************************************************************
* Copyright (C) 2008 VLC authors and VideoLAN
* Copyright (C) 2008-2014 Rémi Denis-Courmont
*
* Author: Antoine Cellerier <dionoea at videolan dot org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_filter.h>
#include <vlc_modules.h>
#include <vlc_spu.h>
#include <libvlc.h>
#include <assert.h>
typedef struct chained_filter_t
{
/* Public part of the filter structure */
filter_t filter;
/* Private filter chain data (shhhh!) */
struct chained_filter_t *prev, *next;
vlc_mouse_t *mouse;
picture_t *pending;
} chained_filter_t;
/* Only use this with filter objects from _this_ C module */
static inline chained_filter_t *chained (filter_t *filter)
{
return (chained_filter_t *)filter;
}
/* */
struct filter_chain_t
{
filter_owner_t callbacks; /**< Inner callbacks */
filter_owner_t owner; /**< Owner (downstream) callbacks */
chained_filter_t *first, *last; /**< List of filters */
es_format_t fmt_in; /**< Chain input format (constant) */
es_format_t fmt_out; /**< Chain current output format */
unsigned length; /**< Number of filters */
bool b_allow_fmt_out_change; /**< Can the output format be changed? */
char psz_capability[1]; /**< Module capability for all chained filters */
};
/**
* Local prototypes
*/
static void FilterDeletePictures( picture_t * );
static filter_chain_t *filter_chain_NewInner( const filter_owner_t *callbacks,
const char *cap, bool fmt_out_change, const filter_owner_t *owner )
{
assert( callbacks != NULL && callbacks->sys != NULL );
assert( cap != NULL );
filter_chain_t *chain = malloc( sizeof(*chain) + strlen( cap ) );
if( unlikely(chain == NULL) )
return NULL;
chain->callbacks = *callbacks;
if( owner != NULL )
chain->owner = *owner;
chain->first = NULL;
chain->last = NULL;
es_format_Init( &chain->fmt_in, UNKNOWN_ES, 0 );
es_format_Init( &chain->fmt_out, UNKNOWN_ES, 0 );
chain->length = 0;
chain->b_allow_fmt_out_change = fmt_out_change;
strcpy( chain->psz_capability, cap );
return chain;
}
#undef filter_chain_New
/**
* Filter chain initialisation
*/
filter_chain_t *filter_chain_New( vlc_object_t *obj, const char *cap,
bool fmt_out_change )
{
filter_owner_t callbacks = {
.sys = obj,
};
return filter_chain_NewInner( &callbacks, cap, fmt_out_change, NULL );
}
/** Chained filter picture allocator function */
static picture_t *filter_chain_VideoBufferNew( filter_t *filter )
{
if( chained(filter)->next != NULL )
{
picture_t *pic = picture_NewFromFormat( &filter->fmt_out.video );
if( pic == NULL )
msg_Err( filter, "Failed to allocate picture" );
return pic;
}
else
{
filter_chain_t *chain = filter->owner.sys;
/* XXX ugly */
filter->owner.sys = chain->owner.sys;
picture_t *pic = chain->owner.video.buffer_new( filter );
filter->owner.sys = chain;
return pic;
}
}
#undef filter_chain_NewVideo
filter_chain_t *filter_chain_NewVideo( vlc_object_t *obj, bool allow_change,
const filter_owner_t *restrict owner )
{
filter_owner_t callbacks = {
.sys = obj,
.video = {
.buffer_new = filter_chain_VideoBufferNew,
},
};
return filter_chain_NewInner( &callbacks, "video filter2", allow_change,
owner );
}
/**
* Filter chain destruction
*/
void filter_chain_Delete( filter_chain_t *p_chain )
{
while( p_chain->first != NULL )
filter_chain_DeleteFilter( p_chain, &p_chain->first->filter );
es_format_Clean( &p_chain->fmt_in );
es_format_Clean( &p_chain->fmt_out );
free( p_chain );
}
/**
* Filter chain reinitialisation
*/
void filter_chain_Reset( filter_chain_t *p_chain, const es_format_t *p_fmt_in,
const es_format_t *p_fmt_out )
{
while( p_chain->first != NULL )
filter_chain_DeleteFilter( p_chain, &p_chain->first->filter );
if( p_fmt_in )
{
es_format_Clean( &p_chain->fmt_in );
es_format_Copy( &p_chain->fmt_in, p_fmt_in );
}
if( p_fmt_out )
{
es_format_Clean( &p_chain->fmt_out );
es_format_Copy( &p_chain->fmt_out, p_fmt_out );
}
}
filter_t *filter_chain_AppendFilter( filter_chain_t *chain, const char *name,
config_chain_t *cfg,
const es_format_t *fmt_in,
const es_format_t *fmt_out )
{
vlc_object_t *parent = chain->callbacks.sys;
chained_filter_t *chained =
vlc_custom_create( parent, sizeof(*chained), "filter" );
if( unlikely(chained == NULL) )
return NULL;
filter_t *filter = &chained->filter;
if( fmt_in == NULL )
{
if( chain->last != NULL )
fmt_in = &chain->last->filter.fmt_out;
else
fmt_in = &chain->fmt_in;
}
if( fmt_out == NULL )
fmt_out = &chain->fmt_out;
es_format_Copy( &filter->fmt_in, fmt_in );
es_format_Copy( &filter->fmt_out, fmt_out );
filter->b_allow_fmt_out_change = chain->b_allow_fmt_out_change;
filter->p_cfg = cfg;
filter->owner = chain->callbacks;
filter->owner.sys = chain;
filter->p_module = module_need( filter, chain->psz_capability, name,
name != NULL );
if( filter->p_module == NULL )
goto error;
if( filter->b_allow_fmt_out_change )
{
es_format_Clean( &chain->fmt_out );
es_format_Copy( &chain->fmt_out, &filter->fmt_out );
}
if( chain->last == NULL )
{
assert( chain->first == NULL );
chain->first = chained;
}
else
chain->last->next = chained;
chained->prev = chain->last;
chain->last = chained;
chained->next = NULL;
chain->length++;
vlc_mouse_t *mouse = malloc( sizeof(*mouse) );
if( likely(mouse != NULL) )
vlc_mouse_Init( mouse );
chained->mouse = mouse;
chained->pending = NULL;
msg_Dbg( parent, "Filter '%s' (%p) appended to chain",
(name != NULL) ? name : module_get_name(filter->p_module, false),
filter );
return filter;
error:
if( name != NULL )
msg_Err( parent, "Failed to create %s '%s'", chain->psz_capability,
name );
else
msg_Err( parent, "Failed to create %s", chain->psz_capability );
es_format_Clean( &filter->fmt_out );
es_format_Clean( &filter->fmt_in );
vlc_object_release( filter );
return NULL;
}
void filter_chain_DeleteFilter( filter_chain_t *chain, filter_t *filter )
{
vlc_object_t *obj = chain->callbacks.sys;
chained_filter_t *chained = (chained_filter_t *)filter;
/* Remove it from the chain */
if( chained->prev != NULL )
chained->prev->next = chained->next;
else
{
assert( chained == chain->first );
chain->first = chained->next;
}
if( chained->next != NULL )
chained->next->prev = chained->prev;
else
{
assert( chained == chain->last );
chain->last = chained->prev;
}
assert( chain->length > 0 );
chain->length--;
module_unneed( filter, filter->p_module );
msg_Dbg( obj, "Filter %p removed from chain", filter );
FilterDeletePictures( chained->pending );
free( chained->mouse );
es_format_Clean( &filter->fmt_out );
es_format_Clean( &filter->fmt_in );
vlc_object_release( filter );
/* FIXME: check fmt_in/fmt_out consitency */
}
int filter_chain_AppendFromString( filter_chain_t *chain, const char *str )
{
vlc_object_t *obj = chain->callbacks.sys;
char *buf = NULL;
int ret = 0;
while( str != NULL && str[0] != '\0' )
{
config_chain_t *cfg;
char *name;
char *next = config_ChainCreate( &name, &cfg, str );
str = next;
free( buf );
buf = next;
filter_t *filter = filter_chain_AppendFilter( chain, name, cfg,
NULL, NULL );
if( filter == NULL )
{
msg_Err( obj, "Failed to append '%s' to chain", name );
free( name );
free( cfg );
goto error;
}
free( name );
ret++;
}
free( buf );
return ret;
error:
while( ret > 0 ) /* Unwind */
{
filter_chain_DeleteFilter( chain, &chain->last->filter );
ret--;
}
free( buf );
return -1;
}
int filter_chain_ForEach( filter_chain_t *chain,
int (*cb)( filter_t *, void * ), void *opaque )
{
for( chained_filter_t *f = chain->first; f != NULL; f = f->next )
{
int ret = cb( &f->filter, opaque );
if( ret )
return ret;
}
return VLC_SUCCESS;
}
int filter_chain_GetLength( filter_chain_t *p_chain )
{
return p_chain->length;
}
const es_format_t *filter_chain_GetFmtOut( filter_chain_t *p_chain )
{
if( p_chain->b_allow_fmt_out_change )
return &p_chain->fmt_out;
if( p_chain->last != NULL )
return &p_chain->last->filter.fmt_out;
/* Unless filter_chain_Reset has been called we are doomed */
return &p_chain->fmt_out;
}
static picture_t *FilterChainVideoFilter( chained_filter_t *f, picture_t *p_pic )
{
for( ; f != NULL; f = f->next )
{
filter_t *p_filter = &f->filter;
p_pic = p_filter->pf_video_filter( p_filter, p_pic );
if( !p_pic )
break;
if( f->pending )
{
msg_Warn( p_filter, "dropping pictures" );
FilterDeletePictures( f->pending );
}
f->pending = p_pic->p_next;
p_pic->p_next = NULL;
}
return p_pic;
}
picture_t *filter_chain_VideoFilter( filter_chain_t *p_chain, picture_t *p_pic )
{
if( p_pic )
{
p_pic = FilterChainVideoFilter( p_chain->first, p_pic );
if( p_pic )
return p_pic;
}
for( chained_filter_t *b = p_chain->last; b != NULL; b = b->prev )
{
p_pic = b->pending;
if( !p_pic )
continue;
b->pending = p_pic->p_next;
p_pic->p_next = NULL;
p_pic = FilterChainVideoFilter( b->next, p_pic );
if( p_pic )
return p_pic;
}
return NULL;
}
void filter_chain_VideoFlush( filter_chain_t *p_chain )
{
for( chained_filter_t *f = p_chain->first; f != NULL; f = f->next )
{
filter_t *p_filter = &f->filter;
FilterDeletePictures( f->pending );
f->pending = NULL;
filter_FlushPictures( p_filter );
}
}
block_t *filter_chain_AudioFilter( filter_chain_t *p_chain, block_t *p_block )
{
for( chained_filter_t *f = p_chain->first; f != NULL; f = f->next )
{
filter_t *p_filter = &f->filter;
p_block = p_filter->pf_audio_filter( p_filter, p_block );
if( !p_block )
break;
}
return p_block;
}
void filter_chain_SubSource( filter_chain_t *p_chain, spu_t *spu,
mtime_t display_date )
{
for( chained_filter_t *f = p_chain->first; f != NULL; f = f->next )
{
filter_t *p_filter = &f->filter;
subpicture_t *p_subpic = p_filter->pf_sub_source( p_filter, display_date );
if( p_subpic )
spu_PutSubpicture( spu, p_subpic );
}
}
subpicture_t *filter_chain_SubFilter( filter_chain_t *p_chain, subpicture_t *p_subpic )
{
for( chained_filter_t *f = p_chain->first; f != NULL; f = f->next )
{
filter_t *p_filter = &f->filter;
p_subpic = p_filter->pf_sub_filter( p_filter, p_subpic );
if( !p_subpic )
break;
}
return p_subpic;
}
int filter_chain_MouseFilter( filter_chain_t *p_chain, vlc_mouse_t *p_dst, const vlc_mouse_t *p_src )
{
vlc_mouse_t current = *p_src;
for( chained_filter_t *f = p_chain->last; f != NULL; f = f->prev )
{
filter_t *p_filter = &f->filter;
vlc_mouse_t *p_mouse = f->mouse;
if( p_filter->pf_video_mouse && p_mouse )
{
vlc_mouse_t old = *p_mouse;
vlc_mouse_t filtered;
*p_mouse = current;
if( p_filter->pf_video_mouse( p_filter, &filtered, &old, ¤t ) )
return VLC_EGENERIC;
current = filtered;
}
}
*p_dst = current;
return VLC_SUCCESS;
}
int filter_chain_MouseEvent( filter_chain_t *p_chain,
const vlc_mouse_t *p_mouse,
const video_format_t *p_fmt )
{
for( chained_filter_t *f = p_chain->first; f != NULL; f = f->next )
{
filter_t *p_filter = &f->filter;
if( p_filter->pf_sub_mouse )
{
vlc_mouse_t old = *f->mouse;
*f->mouse = *p_mouse;
if( p_filter->pf_sub_mouse( p_filter, &old, p_mouse, p_fmt ) )
return VLC_EGENERIC;
}
}
return VLC_SUCCESS;
}
/* Helpers */
static void FilterDeletePictures( picture_t *picture )
{
while( picture )
{
picture_t *next = picture->p_next;
picture_Release( picture );
picture = next;
}
}