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
|
/*
* Copyright (C) 2000-2004 the xine project
*
* This file is part of xine, a free video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* xine 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
* Upmix audio filter for xine.
* (c) 2004 James Courtier-Dutton (James@superbug.demon.co.uk)
* This is an up-mix audio filter post plugin.
* It simply creates output channels to match the speaker arrangement.
* E.g. Converts Stereo into Surround 5.1
*/
#include <stdio.h>
#include "xine_internal.h"
#include "xineutils.h"
#include "post.h"
#include "dsp.h"
#include "audio_filters.h"
typedef struct post_plugin_upmix_s post_plugin_upmix_t;
typedef struct post_class_upmix_s post_class_upmix_t;
struct post_class_upmix_s {
post_class_t post_class;
xine_t *xine;
};
/* Q value for low-pass filter */
#define Q 1.0
/* Analog domain biquad section */
typedef struct{
float a[3]; /* Numerator coefficients */
float b[3]; /* Denominator coefficients */
} biquad_t;
/* S-parameters for designing 4th order Butterworth filter */
static const biquad_t s_param[2] = {{{1.0,0.0,0.0},{1.0,0.765367,1.0}},
{{1.0,0.0,0.0},{1.0,1.847759,1.0}}};
/* Data for specific instances of this filter */
typedef struct af_sub_s
{
float w[2][4]; /* Filter taps for low-pass filter */
float q[2][2]; /* Circular queues */
float fc; /* Cutoff frequency [Hz] for low-pass filter */
float k; /* Filter gain */
}af_sub_t;
#ifndef IIR
#define IIR(in,w,q,out) { \
float h0 = (q)[0]; \
float h1 = (q)[1]; \
float hn = (in) - h0 * (w)[0] - h1 * (w)[1]; \
out = hn + h0 * (w)[2] + h1 * (w)[3]; \
(q)[1] = h0; \
(q)[0] = hn; \
}
#endif
typedef struct upmix_parameters_s {
int cut_off_freq;
} upmix_parameters_t;
/*
* description of params struct
*/
START_PARAM_DESCR( upmix_parameters_t )
PARAM_ITEM( POST_PARAM_TYPE_INT, cut_off_freq, NULL, 0, 500, 0,
"cut_off_freq" )
END_PARAM_DESCR( param_descr )
struct post_plugin_upmix_s {
post_plugin_t post;
/* private data */
pthread_mutex_t lock;
xine_post_in_t params_input;
upmix_parameters_t params;
audio_buffer_t *buf; /* dummy buffer just to hold a copy of audio data */
af_sub_t *sub;
int channels;
int channels_out;
};
/**************************************************************************
* upmix parameters functions
*************************************************************************/
static int set_parameters (xine_post_t *this_gen, void *param_gen) {
post_plugin_upmix_t *this = (post_plugin_upmix_t *)this_gen;
upmix_parameters_t *param = (upmix_parameters_t *)param_gen;
pthread_mutex_lock (&this->lock);
memcpy( &this->params, param, sizeof(upmix_parameters_t) );
pthread_mutex_unlock (&this->lock);
return 1;
}
static int get_parameters (xine_post_t *this_gen, void *param_gen) {
post_plugin_upmix_t *this = (post_plugin_upmix_t *)this_gen;
upmix_parameters_t *param = (upmix_parameters_t *)param_gen;
pthread_mutex_lock (&this->lock);
memcpy( param, &this->params, sizeof(upmix_parameters_t) );
pthread_mutex_unlock (&this->lock);
return 1;
}
static xine_post_api_descr_t * get_param_descr (void) {
return ¶m_descr;
}
static char * get_help (void) {
return _("Upmix functions. e.g. Take stereo input and produce Surround 5.1 output."
"\n"
"Parameters\n"
" cut_off_freq\n"
"\n"
"Note: It is possible to use frontend's control window to set "
"these parameters.\n"
"\n"
);
}
static xine_post_api_t post_api = {
set_parameters,
get_parameters,
get_param_descr,
get_help,
};
/**************************************************************************
* xine audio post plugin functions
*************************************************************************/
static int upmix_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream,
uint32_t bits, uint32_t rate, int mode) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
post_plugin_upmix_t *this = (post_plugin_upmix_t *)port->post;
uint32_t capabilities;
_x_post_rewire(&this->post);
_x_post_inc_usage(port);
port->stream = stream;
port->bits = bits;
port->rate = rate;
port->mode = mode;
capabilities = port->original_port->get_capabilities(port->original_port);
this->channels = _x_ao_mode2channels(mode);
/* FIXME: Handle all desired output formats */
if ((capabilities & AO_CAP_MODE_5_1CHANNEL) && (capabilities & AO_CAP_FLOAT32)) {
this->channels_out=6;
mode = AO_CAP_MODE_5_1CHANNEL;
bits = 32; /* Upmix to Floats */
} else {
this->channels_out=2;
}
pthread_mutex_lock (&this->lock);
this->sub = xine_xmalloc(sizeof(af_sub_t));
if (!this->sub) {
pthread_mutex_unlock (&this->lock);
return 0;
}
this->sub->fc = this->params.cut_off_freq; /* LFE Cutoff frequency 100Hz */
this->sub->k = 1.0;
if((-1 == szxform(s_param[0].a, s_param[0].b, Q, this->sub->fc,
(float)rate, &this->sub->k, this->sub->w[0])) ||
(-1 == szxform(s_param[1].a, s_param[1].b, Q, this->sub->fc,
(float)rate, &this->sub->k, this->sub->w[1]))) {
free(this->sub);
this->sub=NULL;
pthread_mutex_unlock (&this->lock);
return 0;
}
pthread_mutex_unlock (&this->lock);
return (port->original_port->open) (port->original_port, stream, bits, rate, mode );
}
#if 0
static void upmix_port_close(xine_audio_port_t *port_gen, xine_stream_t *stream ) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
port->stream = NULL;
port->original_port->close(port->original_port, stream );
_x_post_dec_usage(port);
}
#endif
static int upmix_frames_2to51_any_to_float( uint8_t *dst8, uint8_t *src8, int num_frames, int step_channel_in, af_sub_t *sub) {
float *dst=(float *)dst8;
int16_t *src16=(int16_t *)src8;
float *src_float=(float *)src8;
int src_num_channels=2;
int dst_num_channels=6;
int src_frame;
int dst_frame;
int32_t sample24;
float sample;
float left;
float right;
float sum;
int frame;
int src_units_per_sample=1;
if (step_channel_in == 3) src_units_per_sample=step_channel_in; /* Special handling for 24 bit 3byte input */
for (frame=0;frame < num_frames; frame++) {
dst_frame=frame*dst_num_channels;
src_frame=frame*src_num_channels*src_units_per_sample;
switch (step_channel_in) {
case 1:
left = src8[src_frame];
left = (left - 128 ) / 128; /* FIXME: Need to verify this is correct */
right = src8[src_frame+1];
right = (right - 128) / 128;
break;
case 2:
left = (1.0/SHRT_MAX)*((float)src16[src_frame]);
right = (1.0/SHRT_MAX)*((float)src16[src_frame+1]);
break;
case 3:
#ifdef WORDS_BIGENDIAN
sample24 = (src8[src_frame] << 24) | (src8[src_frame+1] << 16) | ( src8[src_frame+2] << 8);
#else
sample24 = (src8[src_frame] << 8) | (src8[src_frame+1] << 16) | ( src8[src_frame+2] << 24);
#endif
left = (1.0/INT32_MAX)*((float)sample24);
#ifdef WORDS_BIGENDIAN
sample24 = (src8[src_frame+3] << 24) | (src8[src_frame+4] << 16) | ( src8[src_frame+5] << 8);
#else
sample24 = (src8[src_frame+3] << 8) | (src8[src_frame+4] << 16) | ( src8[src_frame+5] << 24);
#endif
right = (1.0/INT32_MAX)*((float)sample24);
break;
case 4:
left = src_float[src_frame];
right = src_float[src_frame+1];
break;
default:
left = right = 0.0;
}
/* Left channel */
dst[dst_frame] = left;
/* Right channel */
dst[dst_frame+1] = right;
/* try a bit of dolby */
/* FIXME: Dobly surround is a bit more complicated than this, but this is a start. */
/* Rear Left channel */
dst[dst_frame+2] = (left - right) / 2;
/* Rear Right channel */
dst[dst_frame+3] = (left - right) / 2;
sum = (left + right) / 2;
/* Center channel */
/* Mute this one because it just causes the Left/Right channel spacing to get moved to the center. */
/* dst[dst_frame+4] = sum; */
dst[dst_frame+4] = 0;
/* Create the LFE channel using a low pass filter */
/* filter feature ported from mplayer */
sample = sum;
IIR(sample * sub->k, sub->w[0], sub->q[0], sample);
IIR(sample , sub->w[1], sub->q[1], sample);
/* LFE or Sub woofer channel */
dst[dst_frame+5] = sample;
}
return frame;
}
static void upmix_port_put_buffer (xine_audio_port_t *port_gen,
audio_buffer_t *buf, xine_stream_t *stream) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
post_plugin_upmix_t *this = (post_plugin_upmix_t *)port->post;
int src_step_frame;
int dst_step_frame;
int step_channel_in;
int step_channel_out;
uint8_t *data8src;
uint8_t *data8dst;
int num_bytes;
int num_frames;
int num_frames_done;
int num_frames_processed=0;
if ((this->channels==2) && (this->channels_out==6)) {
while (num_frames_processed < buf->num_frames) {
this->buf = port->original_port->get_buffer(port->original_port);
/* this->buf->num_frames is handled after the upmix */
this->buf->vpts = buf->vpts;
if (num_frames_processed != 0) this->buf->vpts = 0;
this->buf->frame_header_count = buf->frame_header_count;
this->buf->first_access_unit = buf->first_access_unit;
/* FIXME: The audio buffer should contain this info.
* We should not have to get it from the open call.
*/
this->buf->format.bits = 32; /* Upmix to floats */
this->buf->format.rate = port->rate;
this->buf->format.mode = AO_CAP_MODE_5_1CHANNEL;
_x_extra_info_merge( this->buf->extra_info, buf->extra_info);
step_channel_in = port->bits>>3;
step_channel_out = this->buf->format.bits>>3;
dst_step_frame = this->channels_out*step_channel_out;
src_step_frame = this->channels*step_channel_in;
num_bytes=(buf->num_frames-num_frames_processed)*dst_step_frame;
if (num_bytes > this->buf->mem_size) {
num_bytes = this->buf->mem_size;
}
num_frames = num_bytes/dst_step_frame;
data8src=(int8_t*)buf->mem;
data8src+=num_frames_processed*src_step_frame;
data8dst=(int8_t*)this->buf->mem;
pthread_mutex_lock (&this->lock);
if ((this->sub) && (this->sub->fc != this->params.cut_off_freq)) {
this->sub->fc = this->params.cut_off_freq; /* LFE Cutoff frequency 100Hz */
this->sub->k = 1.0;
if((-1 == szxform(s_param[0].a, s_param[0].b, Q, this->sub->fc,
(float)port->rate, &this->sub->k, this->sub->w[0])) ||
(-1 == szxform(s_param[1].a, s_param[1].b, Q, this->sub->fc,
(float)port->rate, &this->sub->k, this->sub->w[1]))) {
/* Complain fairly loudly! */
printf("Low pass filter init failed!\n");
}
}
pthread_mutex_unlock (&this->lock);
num_frames_done = upmix_frames_2to51_any_to_float(data8dst, data8src, num_frames, step_channel_in, this->sub);
this->buf->num_frames = num_frames_done;
num_frames_processed+= num_frames_done;
/* pass data to original port */
port->original_port->put_buffer(port->original_port, this->buf, stream );
}
/* free data from origial buffer */
buf->num_frames=0; /* UNDOCUMENTED, but hey, it works! Force old audio_out buffer free. */
}
port->original_port->put_buffer(port->original_port, buf, stream );
return;
}
static void upmix_dispose(post_plugin_t *this_gen)
{
post_plugin_upmix_t *this = (post_plugin_upmix_t *)this_gen;
if (_x_post_dispose(this_gen)) {
if (this->sub) free(this->sub);
free(this);
}
}
/* plugin class functions */
static post_plugin_t *upmix_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target)
{
post_plugin_upmix_t *this = (post_plugin_upmix_t *)xine_xmalloc(sizeof(post_plugin_upmix_t));
post_in_t *input;
post_out_t *output;
xine_post_in_t *input_api;
post_audio_port_t *port;
if (!this || !audio_target || !audio_target[0] ) {
free(this);
return NULL;
}
_x_post_init(&this->post, 1, 0);
this->params.cut_off_freq = 100;
port = _x_post_intercept_audio_port(&this->post, audio_target[0], &input, &output);
port->new_port.open = upmix_port_open;
#if 0
port->new_port.close = upmix_port_close;
#endif
port->new_port.put_buffer = upmix_port_put_buffer;
input_api = &this->params_input;
input_api->name = "parameters";
input_api->type = XINE_POST_DATA_PARAMETERS;
input_api->data = &post_api;
xine_list_push_back(this->post.input, input_api);
this->post.xine_post.audio_input[0] = &port->new_port;
this->post.dispose = upmix_dispose;
return &this->post;
}
static char *upmix_get_identifier(post_class_t *class_gen)
{
return "upmix";
}
static char *upmix_get_description(post_class_t *class_gen)
{
return "upmix";
}
static void upmix_class_dispose(post_class_t *class_gen)
{
free(class_gen);
}
/* plugin class initialization function */
void *upmix_init_plugin(xine_t *xine, void *data)
{
post_class_upmix_t *class = (post_class_upmix_t *)malloc(sizeof(post_class_upmix_t));
if (!class)
return NULL;
class->post_class.open_plugin = upmix_open_plugin;
class->post_class.get_identifier = upmix_get_identifier;
class->post_class.get_description = upmix_get_description;
class->post_class.dispose = upmix_class_dispose;
class->xine = xine;
return class;
}
|