forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.c
636 lines (583 loc) · 21.5 KB
/
common.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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/*****************************************************************************
* common.c : audio output management of common data structures
*****************************************************************************
* Copyright (C) 2002-2007 VLC authors and VideoLAN
* $Id$
*
* Authors: Christophe Massiot <[email protected]>
*
* 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 <limits.h>
#include <assert.h>
#include <vlc_common.h>
#include <vlc_aout.h>
#include "aout_internal.h"
/*
* Formats management (internal and external)
*/
/*****************************************************************************
* aout_BitsPerSample : get the number of bits per sample
*****************************************************************************/
unsigned int aout_BitsPerSample( vlc_fourcc_t i_format )
{
switch( vlc_fourcc_GetCodec( AUDIO_ES, i_format ) )
{
case VLC_CODEC_U8:
case VLC_CODEC_S8:
case VLC_CODEC_ALAW:
case VLC_CODEC_MULAW:
return 8;
case VLC_CODEC_U16L:
case VLC_CODEC_S16L:
case VLC_CODEC_U16B:
case VLC_CODEC_S16B:
return 16;
case VLC_CODEC_U24L:
case VLC_CODEC_S24L:
case VLC_CODEC_U24B:
case VLC_CODEC_S24B:
return 24;
case VLC_CODEC_S24L32:
case VLC_CODEC_S24B32:
case VLC_CODEC_U32L:
case VLC_CODEC_U32B:
case VLC_CODEC_S32L:
case VLC_CODEC_S32B:
case VLC_CODEC_F32L:
case VLC_CODEC_F32B:
return 32;
case VLC_CODEC_F64L:
case VLC_CODEC_F64B:
return 64;
default:
/* For these formats the caller has to indicate the parameters
* by hand. */
return 0;
}
}
/*****************************************************************************
* aout_FormatPrepare : compute the number of bytes per frame & frame length
*****************************************************************************/
void aout_FormatPrepare( audio_sample_format_t * p_format )
{
p_format->i_channels = aout_FormatNbChannels( p_format );
p_format->i_bitspersample = aout_BitsPerSample( p_format->i_format );
if( p_format->i_bitspersample > 0 )
{
p_format->i_bytes_per_frame = ( p_format->i_bitspersample / 8 )
* aout_FormatNbChannels( p_format );
p_format->i_frame_length = 1;
}
}
/*****************************************************************************
* aout_FormatPrintChannels : print a channel in a human-readable form
*****************************************************************************/
const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format )
{
switch ( p_format->i_physical_channels )
{
case AOUT_CHAN_LEFT:
case AOUT_CHAN_RIGHT:
case AOUT_CHAN_CENTER:
if ( (p_format->i_original_channels & AOUT_CHAN_CENTER)
|| (p_format->i_original_channels
& (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
return "Mono";
else if ( p_format->i_original_channels & AOUT_CHAN_LEFT )
return "Left";
return "Right";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
if ( p_format->i_original_channels & AOUT_CHAN_REVERSESTEREO )
{
if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
return "Dolby/Reverse";
return "Stereo/Reverse";
}
else
{
if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
return "Dolby";
else if ( p_format->i_original_channels & AOUT_CHAN_DUALMONO )
return "Dual-mono";
else if ( p_format->i_original_channels == AOUT_CHAN_CENTER )
return "Stereo/Mono";
else if ( !(p_format->i_original_channels & AOUT_CHAN_RIGHT) )
return "Stereo/Left";
else if ( !(p_format->i_original_channels & AOUT_CHAN_LEFT) )
return "Stereo/Right";
return "Stereo";
}
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
return "3F";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
return "2F1R";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARCENTER:
return "3F1R";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
return "2F2R";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
| AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT:
return "2F2M";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
return "3F2R";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT:
return "3F2M";
case AOUT_CHAN_CENTER | AOUT_CHAN_LFE:
if ( (p_format->i_original_channels & AOUT_CHAN_CENTER)
|| (p_format->i_original_channels
& (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
return "Mono/LFE";
else if ( p_format->i_original_channels & AOUT_CHAN_LEFT )
return "Left/LFE";
return "Right/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_LFE:
if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
return "Dolby/LFE";
else if ( p_format->i_original_channels & AOUT_CHAN_DUALMONO )
return "Dual-mono/LFE";
else if ( p_format->i_original_channels == AOUT_CHAN_CENTER )
return "Mono/LFE";
else if ( !(p_format->i_original_channels & AOUT_CHAN_RIGHT) )
return "Stereo/Left/LFE";
else if ( !(p_format->i_original_channels & AOUT_CHAN_LEFT) )
return "Stereo/Right/LFE";
return "Stereo/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER | AOUT_CHAN_LFE:
return "3F/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER
| AOUT_CHAN_LFE:
return "2F1R/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE:
return "3F1R/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE:
return "2F2R/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
| AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
return "2F2M/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE:
return "3F2R/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
return "3F2M/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
| AOUT_CHAN_MIDDLERIGHT:
return "3F2M2R";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
| AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
return "3F2M2R/LFE";
case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
| AOUT_CHAN_REARCENTER | AOUT_CHAN_MIDDLELEFT
| AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
return "3F2M1R/LFE";
}
return "ERROR";
}
#undef aout_FormatPrint
/**
* Prints an audio sample format in a human-readable form.
*/
void aout_FormatPrint( vlc_object_t *obj, const char *psz_text,
const audio_sample_format_t *p_format )
{
msg_Dbg( obj, "%s '%4.4s' %d Hz %s frame=%d samples/%d bytes", psz_text,
(char *)&p_format->i_format, p_format->i_rate,
aout_FormatPrintChannels( p_format ),
p_format->i_frame_length, p_format->i_bytes_per_frame );
}
#undef aout_FormatsPrint
/**
* Prints two formats in a human-readable form
*/
void aout_FormatsPrint( vlc_object_t *obj, const char * psz_text,
const audio_sample_format_t * p_format1,
const audio_sample_format_t * p_format2 )
{
msg_Dbg( obj, "%s '%4.4s'->'%4.4s' %d Hz->%d Hz %s->%s",
psz_text,
(char *)&p_format1->i_format, (char *)&p_format2->i_format,
p_format1->i_rate, p_format2->i_rate,
aout_FormatPrintChannels( p_format1 ),
aout_FormatPrintChannels( p_format2 ) );
}
/*****************************************************************************
* aout_CheckChannelReorder : Check if we need to do some channel re-ordering
*****************************************************************************/
unsigned aout_CheckChannelReorder( const uint32_t *chans_in,
const uint32_t *chans_out,
uint32_t mask, uint8_t *restrict table )
{
unsigned channels = 0;
if( chans_in == NULL )
chans_in = pi_vlc_chan_order_wg4;
if( chans_out == NULL )
chans_out = pi_vlc_chan_order_wg4;
for( unsigned i = 0; chans_in[i]; i++ )
{
const uint32_t chan = chans_in[i];
if( !(mask & chan) )
continue;
unsigned index = 0;
for( unsigned j = 0; chan != chans_out[j]; j++ )
if( mask & chans_out[j] )
index++;
table[channels++] = index;
}
for( unsigned i = 0; i < channels; i++ )
if( table[i] != i )
return channels;
return 0;
}
/**
* Reorders audio samples within a block of linear audio interleaved samples.
* \param ptr start address of the block of samples
* \param bytes size of the block in bytes (must be a multiple of the product
* of the channels count and the sample size)
* \param channels channels count (also length of the chans_table table)
* \param chans_table permutation table to reorder the channels
* (usually computed by aout_CheckChannelReorder())
* \param fourcc sample format (must be a linear sample format)
* \note The samples must be naturally aligned in memory.
*/
void aout_ChannelReorder( void *ptr, size_t bytes, unsigned channels,
const uint8_t *restrict chans_table, vlc_fourcc_t fourcc )
{
assert( channels != 0 );
assert( channels <= AOUT_CHAN_MAX );
/* The audio formats supported in audio output are inlined. For other
* formats (used in demuxers and muxers), memcpy() is used to avoid
* breaking type punning. */
#define REORDER_TYPE(type) \
do { \
const size_t frames = (bytes / sizeof (type)) / channels; \
type *buf = ptr; \
\
for( size_t i = 0; i < frames; i++ ) \
{ \
type tmp[AOUT_CHAN_MAX]; \
\
for( size_t j = 0; j < channels; j++ ) \
tmp[chans_table[j]] = buf[j]; \
memcpy( buf, tmp, sizeof (type) * channels ); \
buf += channels; \
} \
} while(0)
switch( fourcc )
{
case VLC_CODEC_U8: REORDER_TYPE(uint8_t); break;
case VLC_CODEC_S16N: REORDER_TYPE(int16_t); break;
case VLC_CODEC_FL32: REORDER_TYPE(float); break;
case VLC_CODEC_S32N: REORDER_TYPE(int32_t); break;
case VLC_CODEC_FL64: REORDER_TYPE(double); break;
default:
{
unsigned size = aout_BitsPerSample( fourcc ) / 8;
assert( size != 0 );
const size_t frames = bytes / (size * channels);
unsigned char *buf = ptr;
assert( bytes != 0 );
for( size_t i = 0; i < frames; i++ )
{
unsigned char tmp[AOUT_CHAN_MAX * size];
for( size_t j = 0; j < channels; j++ )
memcpy( tmp + size * chans_table[j], buf + size * j, size );
memcpy( buf, tmp, size * channels );
buf += size * channels;
}
break;
}
}
}
/**
* Interleaves audio samples within a block of samples.
* \param dst destination buffer for interleaved samples
* \param srcv source buffers (one per plane) of uninterleaved samples
* \param samples number of samples (per channel/per plane)
* \param chans channels/planes count
* \param fourcc sample format (must be a linear sample format)
* \note The samples must be naturally aligned in memory.
* \warning Destination and source buffers MUST NOT overlap.
*/
void aout_Interleave( void *restrict dst, const void *const *srcv,
unsigned samples, unsigned chans, vlc_fourcc_t fourcc )
{
#define INTERLEAVE_TYPE(type) \
do { \
type *d = dst; \
for( size_t i = 0; i < chans; i++ ) { \
const type *s = srcv[i]; \
for( size_t j = 0, k = 0; j < samples; j++, k += chans ) \
d[k] = *(s++); \
d++; \
} \
} while(0)
switch( fourcc )
{
case VLC_CODEC_U8: INTERLEAVE_TYPE(uint8_t); break;
case VLC_CODEC_S16N: INTERLEAVE_TYPE(uint16_t); break;
case VLC_CODEC_FL32: INTERLEAVE_TYPE(float); break;
case VLC_CODEC_S32N: INTERLEAVE_TYPE(int32_t); break;
case VLC_CODEC_FL64: INTERLEAVE_TYPE(double); break;
default: assert(0);
}
#undef INTERLEAVE_TYPE
}
/**
* Deinterleaves audio samples within a block of samples.
* \param dst destination buffer for planar samples
* \param src source buffer with interleaved samples
* \param samples number of samples (per channel/per plane)
* \param chans channels/planes count
* \param fourcc sample format (must be a linear sample format)
* \note The samples must be naturally aligned in memory.
* \warning Destination and source buffers MUST NOT overlap.
*/
void aout_Deinterleave( void *restrict dst, const void *restrict src,
unsigned samples, unsigned chans, vlc_fourcc_t fourcc )
{
#define DEINTERLEAVE_TYPE(type) \
do { \
type *d = dst; \
const type *s = src; \
for( size_t i = 0; i < chans; i++ ) { \
for( size_t j = 0, k = 0; j < samples; j++, k += chans ) \
*(d++) = s[k]; \
s++; \
} \
} while(0)
switch( fourcc )
{
case VLC_CODEC_U8: DEINTERLEAVE_TYPE(uint8_t); break;
case VLC_CODEC_S16N: DEINTERLEAVE_TYPE(uint16_t); break;
case VLC_CODEC_FL32: DEINTERLEAVE_TYPE(float); break;
case VLC_CODEC_S32N: DEINTERLEAVE_TYPE(int32_t); break;
case VLC_CODEC_FL64: DEINTERLEAVE_TYPE(double); break;
default: assert(0);
}
#undef DEINTERLEAVE_TYPE
}
/*****************************************************************************
* aout_ChannelExtract:
*****************************************************************************/
static inline void ExtractChannel( uint8_t *pi_dst, int i_dst_channels,
const uint8_t *pi_src, int i_src_channels,
int i_sample_count,
const int *pi_selection, int i_bytes )
{
for( int i = 0; i < i_sample_count; i++ )
{
for( int j = 0; j < i_dst_channels; j++ )
memcpy( &pi_dst[j * i_bytes], &pi_src[pi_selection[j] * i_bytes], i_bytes );
pi_dst += i_dst_channels * i_bytes;
pi_src += i_src_channels * i_bytes;
}
}
void aout_ChannelExtract( void *p_dst, int i_dst_channels,
const void *p_src, int i_src_channels,
int i_sample_count, const int *pi_selection, int i_bits_per_sample )
{
/* It does not work in place */
assert( p_dst != p_src );
/* Force the compiler to inline for the specific cases so it can optimize */
if( i_bits_per_sample == 8 )
ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 1 );
else if( i_bits_per_sample == 16 )
ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 2 );
else if( i_bits_per_sample == 32 )
ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 4 );
else if( i_bits_per_sample == 64 )
ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 8 );
}
bool aout_CheckChannelExtraction( int *pi_selection,
uint32_t *pi_layout, int *pi_channels,
const uint32_t pi_order_dst[AOUT_CHAN_MAX],
const uint32_t *pi_order_src, int i_channels )
{
const uint32_t pi_order_dual_mono[] = { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT };
uint32_t i_layout = 0;
int i_out = 0;
int pi_index[AOUT_CHAN_MAX];
/* */
if( !pi_order_dst )
pi_order_dst = pi_vlc_chan_order_wg4;
/* Detect special dual mono case */
if( i_channels == 2 &&
pi_order_src[0] == AOUT_CHAN_CENTER && pi_order_src[1] == AOUT_CHAN_CENTER )
{
i_layout |= AOUT_CHAN_DUALMONO;
pi_order_src = pi_order_dual_mono;
}
/* */
for( int i = 0; i < i_channels; i++ )
{
/* Ignore unknown or duplicated channels or not present in output */
if( !pi_order_src[i] || (i_layout & pi_order_src[i]) )
continue;
for( int j = 0; j < AOUT_CHAN_MAX; j++ )
{
if( pi_order_dst[j] == pi_order_src[i] )
{
assert( i_out < AOUT_CHAN_MAX );
pi_index[i_out++] = i;
i_layout |= pi_order_src[i];
break;
}
}
}
/* */
for( int i = 0, j = 0; i < AOUT_CHAN_MAX; i++ )
{
for( int k = 0; k < i_out; k++ )
{
if( pi_order_dst[i] == pi_order_src[pi_index[k]] )
{
pi_selection[j++] = pi_index[k];
break;
}
}
}
*pi_layout = i_layout;
*pi_channels = i_out;
for( int i = 0; i < i_out; i++ )
{
if( pi_selection[i] != i )
return true;
}
return i_out == i_channels;
}
/* Return the order in which filters should be inserted */
static int FilterOrder( const char *psz_name )
{
static const struct {
const char psz_name[10];
int i_order;
} filter[] = {
{ "equalizer", 0 },
};
for( unsigned i = 0; i < ARRAY_SIZE(filter); i++ )
{
if( !strcmp( filter[i].psz_name, psz_name ) )
return filter[i].i_order;
}
return INT_MAX;
}
/* This function will add or remove a module from a string list (colon
* separated). It will return true if there is a modification
* In case p_aout is NULL, we will use configuration instead of variable */
bool aout_ChangeFilterString( vlc_object_t *p_obj, vlc_object_t *p_aout,
const char *psz_variable,
const char *psz_name, bool b_add )
{
if( *psz_name == '\0' )
return false;
char *psz_list;
if( p_aout )
{
psz_list = var_GetString( p_aout, psz_variable );
}
else
{
psz_list = var_CreateGetString( p_obj->p_libvlc, psz_variable );
var_Destroy( p_obj->p_libvlc, psz_variable );
}
/* Split the string into an array of filters */
int i_count = 1;
for( char *p = psz_list; p && *p; p++ )
i_count += *p == ':';
i_count += b_add;
const char **ppsz_filter = calloc( i_count, sizeof(*ppsz_filter) );
if( !ppsz_filter )
{
free( psz_list );
return false;
}
bool b_present = false;
i_count = 0;
for( char *p = psz_list; p && *p; )
{
char *psz_end = strchr(p, ':');
if( psz_end )
*psz_end++ = '\0';
else
psz_end = p + strlen(p);
if( *p )
{
b_present |= !strcmp( p, psz_name );
ppsz_filter[i_count++] = p;
}
p = psz_end;
}
if( b_present == b_add )
{
free( ppsz_filter );
free( psz_list );
return false;
}
if( b_add )
{
int i_order = FilterOrder( psz_name );
int i;
for( i = 0; i < i_count; i++ )
{
if( FilterOrder( ppsz_filter[i] ) > i_order )
break;
}
if( i < i_count )
memmove( &ppsz_filter[i+1], &ppsz_filter[i], (i_count - i) * sizeof(*ppsz_filter) );
ppsz_filter[i] = psz_name;
i_count++;
}
else
{
for( int i = 0; i < i_count; i++ )
{
if( !strcmp( ppsz_filter[i], psz_name ) )
ppsz_filter[i] = "";
}
}
size_t i_length = 0;
for( int i = 0; i < i_count; i++ )
i_length += 1 + strlen( ppsz_filter[i] );
char *psz_new = malloc( i_length + 1 );
*psz_new = '\0';
for( int i = 0; i < i_count; i++ )
{
if( *ppsz_filter[i] == '\0' )
continue;
if( *psz_new )
strcat( psz_new, ":" );
strcat( psz_new, ppsz_filter[i] );
}
free( ppsz_filter );
free( psz_list );
if( p_aout )
var_SetString( p_aout, psz_variable, psz_new );
else
config_PutPsz( p_obj, psz_variable, psz_new );
free( psz_new );
return true;
}