]> git.sesse.net Git - vlc/blob - modules/audio_filter/channel_mixer/headphone.c
e36ed615cacc09675d9f9ad87472d1d367600573
[vlc] / modules / audio_filter / channel_mixer / headphone.c
1 /*****************************************************************************
2  * headphone.c : headphone virtual spatialization channel mixer module
3  *               -> gives the feeling of a real room with a simple headphone
4  *****************************************************************************
5  * Copyright (C) 2002-2005 the VideoLAN team
6  * $Id$
7  *
8  * Authors: Boris Dorès <babal@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29 #include <string.h>
30 #include <math.h>                                        /* sqrt */
31
32 #include <vlc/vlc.h>
33 #include "audio_output.h"
34 #include "aout_internal.h"
35
36 /*****************************************************************************
37  * Local prototypes
38  *****************************************************************************/
39 static int  Create    ( vlc_object_t * );
40 static void Destroy   ( vlc_object_t * );
41
42 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
43                         aout_buffer_t * );
44
45 /*****************************************************************************
46  * Module descriptor
47  *****************************************************************************/
48 #define MODULE_DESCRIPTION N_ ( \
49      "This effect gives you the feeling that you are standing in a room " \
50      "with a complete 7.1 speaker set when using only a headphone, " \
51      "providing a more realistic sound experience. It should also be " \
52      "more comfortable and less tiring when listening to music for " \
53      "long periods of time.\nIt works with any source format from mono " \
54      "to 7.1.")
55
56 #define HEADPHONE_DIM_TEXT N_("Characteristic dimension")
57 #define HEADPHONE_DIM_LONGTEXT N_( \
58      "Distance between front left speaker and listener in meters.")
59
60 #define HEADPHONE_COMPENSATE_TEXT N_("Compensate delay")
61 #define HEADPHONE_COMPENSATE_LONGTEXT N_( \
62      "The delay which is introduced by the physical algorithm may "\
63      "sometimes be disturbing for the lipsync. In that case, turn "\
64      "this on to compensate.")
65
66 #define HEADPHONE_DOLBY_TEXT N_("No decoding of Dolby Surround")
67 #define HEADPHONE_DOLBY_LONGTEXT N_( \
68      "If this option is turned on (not recommended), Dolby Surround "\
69      "encoded streams won't be decoded before being processed by this "\
70      "filter.")
71
72 vlc_module_begin();
73     set_description( N_("Headphone channel mixer with virtual spatialization effect") );
74     set_shortname( _("Headphone effect") );
75     set_category( CAT_AUDIO );
76     set_subcategory( SUBCAT_AUDIO_AFILTER );
77
78     add_integer( "headphone-dim", 10, NULL, HEADPHONE_DIM_TEXT,
79                  HEADPHONE_DIM_LONGTEXT, VLC_FALSE );
80     add_bool( "headphone-compensate", 0, NULL, HEADPHONE_COMPENSATE_TEXT,
81               HEADPHONE_COMPENSATE_LONGTEXT, VLC_TRUE );
82     add_bool( "headphone-dolby", 0, NULL, HEADPHONE_DOLBY_TEXT,
83               HEADPHONE_DOLBY_LONGTEXT, VLC_TRUE );
84
85     set_capability( "audio filter", 0 );
86     set_callbacks( Create, Destroy );
87     add_shortcut( "headphone" );
88 vlc_module_end();
89
90
91 /*****************************************************************************
92  * Internal data structures
93  *****************************************************************************/
94 struct atomic_operation_t
95 {
96     int i_source_channel_offset;
97     int i_dest_channel_offset;
98     unsigned int i_delay;/* in sample unit */
99     double d_amplitude_factor;
100 };
101
102 struct aout_filter_sys_t
103 {
104     size_t i_overflow_buffer_size;/* in bytes */
105     byte_t * p_overflow_buffer;
106     unsigned int i_nb_atomic_operations;
107     struct atomic_operation_t * p_atomic_operations;
108 };
109
110 /*****************************************************************************
111  * Init: initialize internal data structures
112  * and computes the needed atomic operations
113  *****************************************************************************/
114 /* x and z represent the coordinates of the virtual speaker
115  *  relatively to the center of the listener's head, measured in meters :
116  *
117  *  left              right
118  *Z
119  *-
120  *a          head
121  *x
122  *i
123  *s
124  *  rear left    rear right
125  *
126  *          x-axis
127  *  */
128 static void ComputeChannelOperations ( struct aout_filter_sys_t * p_data
129         , unsigned int i_rate , unsigned int i_next_atomic_operation
130         , int i_source_channel_offset , double d_x , double d_z
131         , double d_compensation_length , double d_channel_amplitude_factor )
132 {
133     double d_c = 340; /*sound celerity (unit: m/s)*/
134     double d_compensation_delay = (d_compensation_length-0.1) / d_c * i_rate;
135
136     /* Left ear */
137     p_data->p_atomic_operations[i_next_atomic_operation]
138         .i_source_channel_offset = i_source_channel_offset;
139     p_data->p_atomic_operations[i_next_atomic_operation]
140         .i_dest_channel_offset = 0;/* left */
141     p_data->p_atomic_operations[i_next_atomic_operation]
142         .i_delay = (int)( sqrt( (-0.1-d_x)*(-0.1-d_x) + (0-d_z)*(0-d_z) )
143                           / d_c * i_rate - d_compensation_delay );
144     if ( d_x < 0 )
145     {
146         p_data->p_atomic_operations[i_next_atomic_operation]
147             .d_amplitude_factor = d_channel_amplitude_factor * 1.1 / 2;
148     }
149     else if ( d_x > 0 )
150     {
151         p_data->p_atomic_operations[i_next_atomic_operation]
152             .d_amplitude_factor = d_channel_amplitude_factor * 0.9 / 2;
153     }
154     else
155     {
156         p_data->p_atomic_operations[i_next_atomic_operation]
157             .d_amplitude_factor = d_channel_amplitude_factor / 2;
158     }
159
160     /* Right ear */
161     p_data->p_atomic_operations[i_next_atomic_operation + 1]
162         .i_source_channel_offset = i_source_channel_offset;
163     p_data->p_atomic_operations[i_next_atomic_operation + 1]
164         .i_dest_channel_offset = 1;/* right */
165     p_data->p_atomic_operations[i_next_atomic_operation + 1]
166         .i_delay = (int)( sqrt( (0.1-d_x)*(0.1-d_x) + (0-d_z)*(0-d_z) )
167                           / d_c * i_rate - d_compensation_delay );
168     if ( d_x < 0 )
169     {
170         p_data->p_atomic_operations[i_next_atomic_operation + 1]
171             .d_amplitude_factor = d_channel_amplitude_factor * 0.9 / 2;
172     }
173     else if ( d_x > 0 )
174     {
175         p_data->p_atomic_operations[i_next_atomic_operation + 1]
176             .d_amplitude_factor = d_channel_amplitude_factor * 1.1 / 2;
177     }
178     else
179     {
180         p_data->p_atomic_operations[i_next_atomic_operation + 1]
181             .d_amplitude_factor = d_channel_amplitude_factor / 2;
182     }
183 }
184
185 static int Init ( aout_filter_t * p_filter , struct aout_filter_sys_t * p_data
186         , unsigned int i_nb_channels , uint32_t i_physical_channels
187         , unsigned int i_rate )
188 {
189     double d_x = config_GetInt ( p_filter , "headphone-dim" );
190     double d_z = d_x;
191     double d_z_rear = -d_x/3;
192     double d_min = 0;
193     unsigned int i_next_atomic_operation;
194     int i_source_channel_offset;
195     unsigned int i;
196
197     if ( p_data == NULL )
198     {
199         msg_Dbg ( p_filter, "passing a null pointer as argument" );
200         return 0;
201     }
202
203     if ( config_GetInt ( p_filter , "headphone-compensate" ) )
204     {
205         /* minimal distance to any speaker */
206         if ( i_physical_channels & AOUT_CHAN_REARCENTER )
207         {
208             d_min = d_z_rear;
209         }
210         else
211         {
212             d_min = d_z;
213         }
214     }
215
216     /* Number of elementary operations */
217     p_data->i_nb_atomic_operations = i_nb_channels * 2;
218     if ( i_physical_channels & AOUT_CHAN_CENTER )
219     {
220         p_data->i_nb_atomic_operations += 2;
221     }
222     p_data->p_atomic_operations = malloc ( sizeof(struct atomic_operation_t)
223             * p_data->i_nb_atomic_operations );
224     if ( p_data->p_atomic_operations == NULL )
225     {
226         msg_Err( p_filter, "out of memory" );
227         return -1;
228     }
229
230     /* For each virtual speaker, computes elementary wave propagation time
231      * to each ear */
232     i_next_atomic_operation = 0;
233     i_source_channel_offset = 0;
234     if ( i_physical_channels & AOUT_CHAN_LEFT )
235     {
236         ComputeChannelOperations ( p_data , i_rate
237                 , i_next_atomic_operation , i_source_channel_offset
238                 , -d_x , d_z , d_min , 2.0 / i_nb_channels );
239         i_next_atomic_operation += 2;
240         i_source_channel_offset++;
241     }
242     if ( i_physical_channels & AOUT_CHAN_RIGHT )
243     {
244         ComputeChannelOperations ( p_data , i_rate
245                 , i_next_atomic_operation , i_source_channel_offset
246                 , d_x , d_z , d_min , 2.0 / i_nb_channels );
247         i_next_atomic_operation += 2;
248         i_source_channel_offset++;
249     }
250     if ( i_physical_channels & AOUT_CHAN_MIDDLELEFT )
251     {
252         ComputeChannelOperations ( p_data , i_rate
253                 , i_next_atomic_operation , i_source_channel_offset
254                 , -d_x , 0 , d_min , 1.5 / i_nb_channels );
255         i_next_atomic_operation += 2;
256         i_source_channel_offset++;
257     }
258     if ( i_physical_channels & AOUT_CHAN_MIDDLERIGHT )
259     {
260         ComputeChannelOperations ( p_data , i_rate
261                 , i_next_atomic_operation , i_source_channel_offset
262                 , d_x , 0 , d_min , 1.5 / i_nb_channels );
263         i_next_atomic_operation += 2;
264         i_source_channel_offset++;
265     }
266     if ( i_physical_channels & AOUT_CHAN_REARLEFT )
267     {
268         ComputeChannelOperations ( p_data , i_rate
269                 , i_next_atomic_operation , i_source_channel_offset
270                 , -d_x , d_z_rear , d_min , 1.5 / i_nb_channels );
271         i_next_atomic_operation += 2;
272         i_source_channel_offset++;
273     }
274     if ( i_physical_channels & AOUT_CHAN_REARRIGHT )
275     {
276         ComputeChannelOperations ( p_data , i_rate
277                 , i_next_atomic_operation , i_source_channel_offset
278                 , d_x , d_z_rear , d_min , 1.5 / i_nb_channels );
279         i_next_atomic_operation += 2;
280         i_source_channel_offset++;
281     }
282     if ( i_physical_channels & AOUT_CHAN_REARCENTER )
283     {
284         ComputeChannelOperations ( p_data , i_rate
285                 , i_next_atomic_operation , i_source_channel_offset
286                 , 0 , -d_z , d_min , 1.5 / i_nb_channels );
287         i_next_atomic_operation += 2;
288         i_source_channel_offset++;
289     }
290     if ( i_physical_channels & AOUT_CHAN_CENTER )
291     {
292         /* having two center channels increases the spatialization effect */
293         ComputeChannelOperations ( p_data , i_rate
294                 , i_next_atomic_operation , i_source_channel_offset
295                 , d_x / 5.0 , d_z , d_min , 0.75 / i_nb_channels );
296         i_next_atomic_operation += 2;
297         ComputeChannelOperations ( p_data , i_rate
298                 , i_next_atomic_operation , i_source_channel_offset
299                 , -d_x / 5.0 , d_z , d_min , 0.75 / i_nb_channels );
300         i_next_atomic_operation += 2;
301         i_source_channel_offset++;
302     }
303     if ( i_physical_channels & AOUT_CHAN_LFE )
304     {
305         ComputeChannelOperations ( p_data , i_rate
306                 , i_next_atomic_operation , i_source_channel_offset
307                 , 0 , d_z_rear , d_min , 5.0 / i_nb_channels );
308         i_next_atomic_operation += 2;
309         i_source_channel_offset++;
310     }
311
312     /* Initialize the overflow buffer
313      * we need it because the process induce a delay in the samples */
314     p_data->i_overflow_buffer_size = 0;
315     for ( i = 0 ; i < p_data->i_nb_atomic_operations ; i++ )
316     {
317         if ( p_data->i_overflow_buffer_size
318                 < p_data->p_atomic_operations[i].i_delay * i_nb_channels
319                 * sizeof (float) )
320         {
321             p_data->i_overflow_buffer_size
322                 = p_data->p_atomic_operations[i].i_delay * i_nb_channels
323                 * sizeof (float);
324         }
325     }
326     p_data->p_overflow_buffer = malloc ( p_data->i_overflow_buffer_size );
327     if ( p_data->p_atomic_operations == NULL )
328     {
329         msg_Err( p_filter, "out of memory" );
330         return -1;
331     }
332     memset ( p_data->p_overflow_buffer , 0 , p_data->i_overflow_buffer_size );
333
334     /* end */
335     return 0;
336 }
337
338 /*****************************************************************************
339  * Create: allocate headphone downmixer
340  *****************************************************************************/
341 static int Create( vlc_object_t *p_this )
342 {
343     aout_filter_t * p_filter = (aout_filter_t *)p_this;
344     vlc_bool_t b_fit = VLC_TRUE;
345
346     /* Activate this filter only with stereo devices */
347     if ( p_filter->output.i_physical_channels != (AOUT_CHAN_LEFT|AOUT_CHAN_RIGHT)
348           || p_filter->output.i_physical_channels
349                 != ( p_filter->output.i_original_channels & AOUT_CHAN_PHYSMASK )
350           || p_filter->input.i_physical_channels
351                 != ( p_filter->input.i_original_channels & AOUT_CHAN_PHYSMASK ) )
352     {
353         msg_Dbg( p_filter, "Filter discarded (incompatible format)" );
354         return VLC_EGENERIC;
355     }
356
357     /* Request a specific format if not already compatible */
358     if ( p_filter->input.i_format != VLC_FOURCC('f','l','3','2')
359           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
360     {
361         b_fit = VLC_FALSE;
362         p_filter->input.i_format = VLC_FOURCC('f','l','3','2');
363         p_filter->output.i_format = VLC_FOURCC('f','l','3','2');
364     }
365     if ( p_filter->input.i_rate != p_filter->output.i_rate )
366     {
367         b_fit = VLC_FALSE;
368         p_filter->input.i_rate = p_filter->output.i_rate;
369     }
370     if ( p_filter->input.i_physical_channels == (AOUT_CHAN_LEFT|AOUT_CHAN_RIGHT)
371           && ( p_filter->input.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
372           && ! config_GetInt ( p_filter , "headphone-dolby" ) )
373     {
374         b_fit = VLC_FALSE;
375         p_filter->input.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT |
376                                               AOUT_CHAN_CENTER |
377                                               AOUT_CHAN_REARLEFT |
378                                               AOUT_CHAN_REARRIGHT;
379         p_filter->input.i_original_channels = p_filter->input.i_physical_channels;
380     }
381     if ( ! b_fit )
382     {
383         msg_Dbg( p_filter, "Requesting specific format" );
384         return VLC_EGENERIC;
385     }
386
387     /* Allocate the memory needed to store the module's structure */
388     p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
389     if ( p_filter->p_sys == NULL )
390     {
391         msg_Err( p_filter, "Out of memory" );
392         return VLC_EGENERIC;
393     }
394     p_filter->p_sys->i_overflow_buffer_size = 0;
395     p_filter->p_sys->p_overflow_buffer = NULL;
396     p_filter->p_sys->i_nb_atomic_operations = 0;
397     p_filter->p_sys->p_atomic_operations = NULL;
398
399     if ( Init( p_filter , p_filter->p_sys
400                 , aout_FormatNbChannels ( &p_filter->input )
401                 , p_filter->input.i_physical_channels
402                 ,  p_filter->input.i_rate ) < 0 )
403     {
404         return VLC_EGENERIC;
405     }
406
407     p_filter->pf_do_work = DoWork;
408     p_filter->b_in_place = 0;
409
410     return VLC_SUCCESS;
411 }
412
413 /*****************************************************************************
414  * Destroy: deallocate resources associated with headphone downmixer
415  *****************************************************************************/
416 static void Destroy( vlc_object_t *p_this )
417 {
418     aout_filter_t * p_filter = (aout_filter_t *)p_this;
419
420     if ( p_filter->p_sys != NULL )
421     {
422         if ( p_filter->p_sys->p_overflow_buffer != NULL )
423         {
424             free ( p_filter->p_sys->p_overflow_buffer );
425         }
426         if ( p_filter->p_sys->p_atomic_operations != NULL )
427         {
428             free ( p_filter->p_sys->p_atomic_operations );
429         }
430         free ( p_filter->p_sys );
431         p_filter->p_sys = NULL;
432     }
433 }
434
435 /*****************************************************************************
436  * DoWork: convert a buffer
437  *****************************************************************************/
438 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
439                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
440 {
441     int i_input_nb = aout_FormatNbChannels( &p_filter->input );
442     int i_output_nb = aout_FormatNbChannels( &p_filter->output );
443
444     float * p_in = (float*) p_in_buf->p_buffer;
445     byte_t * p_out;
446     byte_t * p_overflow;
447     byte_t * p_slide;
448
449     size_t i_overflow_size;/* in bytes */
450     size_t i_out_size;/* in bytes */
451
452     unsigned int i, j;
453
454     int i_source_channel_offset;
455     int i_dest_channel_offset;
456     unsigned int i_delay;
457     double d_amplitude_factor;
458
459
460     /* out buffer characterisitcs */
461     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
462     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes * i_output_nb / i_input_nb;
463     p_out = p_out_buf->p_buffer;
464     i_out_size = p_out_buf->i_nb_bytes;
465
466     if ( p_filter->p_sys != NULL )
467     {
468         /* Slide the overflow buffer */
469         p_overflow = p_filter->p_sys->p_overflow_buffer;
470         i_overflow_size = p_filter->p_sys->i_overflow_buffer_size;
471
472         memset ( p_out , 0 , i_out_size );
473         if ( i_out_size > i_overflow_size )
474             memcpy ( p_out , p_overflow , i_overflow_size );
475         else
476             memcpy ( p_out , p_overflow , i_out_size );
477
478         p_slide = p_filter->p_sys->p_overflow_buffer;
479         while ( p_slide < p_overflow + i_overflow_size )
480         {
481             if ( p_slide + i_out_size < p_overflow + i_overflow_size )
482             {
483                 memset ( p_slide , 0 , i_out_size );
484                 if ( p_slide + 2 * i_out_size < p_overflow + i_overflow_size )
485                     memcpy ( p_slide , p_slide + i_out_size , i_out_size );
486                 else
487                     memcpy ( p_slide , p_slide + i_out_size
488                       , p_overflow + i_overflow_size - ( p_slide + i_out_size ) );
489             }
490             else
491             {
492                 memset ( p_slide , 0 , p_overflow + i_overflow_size - p_slide );
493             }
494             p_slide += i_out_size;
495         }
496
497         /* apply the atomic operations */
498         for ( i = 0 ; i < p_filter->p_sys->i_nb_atomic_operations ; i++ )
499         {
500             /* shorter variable names */
501             i_source_channel_offset
502                 = p_filter->p_sys->p_atomic_operations[i].i_source_channel_offset;
503             i_dest_channel_offset
504                 = p_filter->p_sys->p_atomic_operations[i].i_dest_channel_offset;
505             i_delay = p_filter->p_sys->p_atomic_operations[i].i_delay;
506             d_amplitude_factor
507                 = p_filter->p_sys->p_atomic_operations[i].d_amplitude_factor;
508
509             if ( p_out_buf->i_nb_samples > i_delay )
510             {
511                 /* current buffer coefficients */
512                 for ( j = 0 ; j < p_out_buf->i_nb_samples - i_delay ; j++ )
513                 {
514                     ((float*)p_out)[ (i_delay+j)*i_output_nb + i_dest_channel_offset ]
515                         += p_in[ j * i_input_nb + i_source_channel_offset ]
516                            * d_amplitude_factor;
517                 }
518
519                 /* overflow buffer coefficients */
520                 for ( j = 0 ; j < i_delay ; j++ )
521                 {
522                     ((float*)p_overflow)[ j*i_output_nb + i_dest_channel_offset ]
523                         += p_in[ (p_out_buf->i_nb_samples - i_delay + j)
524                            * i_input_nb + i_source_channel_offset ]
525                            * d_amplitude_factor;
526                 }
527             }
528             else
529             {
530                 /* overflow buffer coefficients only */
531                 for ( j = 0 ; j < p_out_buf->i_nb_samples ; j++ )
532                 {
533                     ((float*)p_overflow)[ (i_delay - p_out_buf->i_nb_samples + j)
534                         * i_output_nb + i_dest_channel_offset ]
535                         += p_in[ j * i_input_nb + i_source_channel_offset ]
536                            * d_amplitude_factor;
537                 }
538             }
539         }
540     }
541     else
542     {
543         memset ( p_out , 0 , i_out_size );
544     }
545 }