equalizer.m
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:15k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * equalizer.m: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2008 the VideoLAN team
  5.  * $Id: 0c726b1a868e54b94edc6ca7a5768227a2e62ba9 $
  6.  *
  7.  * Authors: Jérôme Decoodt <djc@videolan.org>
  8.  *          Felix Paul Kühne <fkuehne -at- videolan -dot- org>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_aout.h>
  32. #include "intf.h"
  33. #include <math.h>
  34. #include "equalizer.h"
  35. #include "../../audio_filter/equalizer_presets.h"
  36. /*****************************************************************************
  37.  * VLCEqualizer implementation
  38.  *****************************************************************************/
  39. @implementation VLCEqualizer
  40. static void ChangeFiltersString( intf_thread_t *p_intf,
  41.                                  char *psz_name, bool b_add )
  42. {
  43.     char *psz_parser, *psz_string;
  44.     int i;
  45.     vlc_object_t *p_object = vlc_object_find( p_intf,
  46.                                 VLC_OBJECT_AOUT, FIND_ANYWHERE );
  47.     aout_instance_t *p_aout = (aout_instance_t *)p_object;
  48.     if( !p_object )
  49.     {
  50.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  51.     }
  52.     psz_string = var_GetNonEmptyString( p_object, "audio-filter" );
  53.     if( !psz_string ) psz_string = strdup( "" );
  54.     psz_parser = strstr( psz_string, psz_name );
  55.     if( b_add )
  56.     {
  57.         if( !psz_parser )
  58.         {
  59.             psz_parser = psz_string;
  60.             asprintf( &psz_string, ( *psz_string ) ? "%s,%s" : "%s%s",
  61.                             psz_string, psz_name );
  62.             free( psz_parser );
  63.         }
  64.         else
  65.         {
  66.             vlc_object_release( p_object );
  67.             return;
  68.         }
  69.     }
  70.     else
  71.     {
  72.         if( psz_parser )
  73.         {
  74.             memmove( psz_parser, psz_parser + strlen( psz_name ) +
  75.                             ( *( psz_parser + strlen( psz_name ) ) == ',' ? 1 : 0 ),
  76.                             strlen( psz_parser + strlen( psz_name ) ) + 1 );
  77.             if( *( psz_string+strlen( psz_string ) - 1 ) == ',' )
  78.             {
  79.                 *( psz_string+strlen( psz_string ) - 1 ) = '';
  80.             }
  81.          }
  82.          else
  83.          {
  84.             free( psz_string );
  85.             vlc_object_release( p_object );
  86.             return;
  87.          }
  88.     }
  89.     var_SetString( p_object, "audio-filter", psz_string );
  90.     if( p_aout )
  91.     {
  92.         for( i = 0; i < p_aout->i_nb_inputs; i++ )
  93.         {
  94.             p_aout->pp_inputs[i]->b_restart = true;
  95.         }
  96.     }
  97.     
  98.     if( (BOOL)config_GetInt( p_object, "macosx-eq-keep" ) == YES )
  99.     {
  100.         /* save changed to config */
  101.         config_PutPsz( p_object, "audio-filter", psz_string );
  102.     }
  103.     
  104.     free( psz_string );
  105.     vlc_object_release( p_object );
  106. }
  107. static bool GetFiltersStatus( intf_thread_t *p_intf,
  108.                                  char *psz_name )
  109. {
  110.     char *psz_parser, *psz_string;
  111.     vlc_object_t *p_object = vlc_object_find( p_intf,
  112.                                 VLC_OBJECT_AOUT, FIND_ANYWHERE );
  113.     if( p_object == NULL )
  114.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  115.     if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES )
  116.         psz_string = config_GetPsz( p_intf, "audio-filter" );
  117.     if(! psz_string )
  118.         psz_string = var_GetNonEmptyString( p_object, "audio-filter" );
  119.     vlc_object_release( p_object );
  120.     if( !psz_string ) return false;
  121.     psz_parser = strstr( psz_string, psz_name );
  122.     free( psz_string );
  123.     if ( psz_parser )
  124.         return true;
  125.     else
  126.         return false;
  127. }
  128. - (void)initStrings
  129. {
  130.     int i;
  131.     [o_btn_equalizer setToolTip: _NS("Equalizer")];
  132.     [o_ckb_2pass setTitle: _NS("2 Pass")];
  133.     [o_ckb_2pass setToolTip: _NS("Apply the "
  134.         "equalizer filter twice. The effect will be sharper.")];
  135.     [o_ckb_enable setTitle: _NS("Enable")];
  136.     [o_ckb_enable setToolTip: _NS("Enable the equalizer. Bands can be set "
  137.         "manually or using a preset.")];
  138.     [o_fld_preamp setStringValue: _NS("Preamp")];
  139.     [o_popup_presets removeAllItems];
  140.     for( i = 0; i < 18 ; i++ )
  141.     {
  142.         [o_popup_presets insertItemWithTitle: _NS(preset_list_text[i]) atIndex: i];
  143.     }
  144.     [o_window setTitle: _NS("Equalizer")];
  145.     [self initBandSliders];
  146. }
  147. - (void)equalizerUpdated
  148. {
  149.     intf_thread_t *p_intf = VLCIntf;
  150.     float f_preamp, f_band[10];
  151.     char *psz_bands, *psz_bands_init, *p_next;
  152.     bool b_2p;
  153.     int i;
  154.     bool b_enabled = GetFiltersStatus( p_intf, (char *)"equalizer" );
  155.     vlc_object_t *p_object = vlc_object_find( p_intf,
  156.                                               VLC_OBJECT_AOUT, FIND_ANYWHERE );
  157.     if( p_object == NULL )
  158.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  159.     var_Create( p_object, "equalizer-preamp", VLC_VAR_FLOAT |
  160.                 VLC_VAR_DOINHERIT );
  161.     var_Create( p_object, "equalizer-bands", VLC_VAR_STRING |
  162.                 VLC_VAR_DOINHERIT );
  163.     psz_bands = var_GetNonEmptyString( p_object, "equalizer-bands" );
  164.     if( psz_bands == NULL )
  165.         psz_bands = strdup( "0 0 0 0 0 0 0 0 0 0" );
  166.     if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES )
  167.     {
  168.         b_2p = (BOOL)config_GetInt( p_object, "equalizer-2pass" );
  169.         f_preamp = config_GetFloat( p_object, "equalizer-preamp" );
  170.     }
  171.     else
  172.     {
  173.         b_2p = var_GetBool( p_object, "equalizer-2pass" );
  174.         f_preamp = var_GetFloat( p_object, "equalizer-preamp" );
  175.     }
  176.     vlc_object_release( p_object );
  177.     
  178.     /* Set the preamp slider */
  179.     [o_slider_preamp setFloatValue: f_preamp];
  180.     /* Set the bands slider */
  181.     psz_bands_init = psz_bands;
  182.     for( i = 0; i < 10; i++ )
  183.     {
  184.         /* Read dB -20/20 */
  185.         f_band[i] = strtof( psz_bands, &p_next );
  186.         if( !p_next || p_next == psz_bands ) break; /* strtof() failed */
  187.     
  188.         if( !*psz_bands ) break; /* end of line */
  189.         psz_bands = p_next+1;
  190.     }
  191.     free( psz_bands_init );
  192.     [self setBandSlidersValues:f_band];
  193.     /* Set the the checkboxes */
  194.     [o_ckb_enable setState: b_enabled];
  195.     [o_ckb_2pass setState: b_2p];        
  196. }
  197. - (IBAction)bandSliderUpdated:(id)sender
  198. {
  199.     intf_thread_t *p_intf = VLCIntf;
  200.     vlc_object_t *p_object = vlc_object_find( p_intf,
  201.                                               VLC_OBJECT_AOUT, FIND_ANYWHERE );
  202.     if( p_object == NULL )
  203.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  204.     const char *psz_values;
  205.     NSString *preset = [NSString stringWithFormat:@"%.1f", [o_slider_band1 floatValue] ];
  206.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band2 floatValue] ];
  207.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band3 floatValue] ];
  208.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band4 floatValue] ];
  209.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band5 floatValue] ];
  210.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band6 floatValue] ];
  211.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band7 floatValue] ];
  212.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band8 floatValue] ];
  213.     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band9 floatValue] ];
  214.     preset = [preset stringByAppendingFormat:@"%.1f", [o_slider_band10 floatValue] ];
  215.     psz_values = [preset UTF8String];
  216.     var_SetString( p_object, "equalizer-bands", psz_values );
  217.     if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES )
  218.     {
  219.         /* save changed to config */
  220.         config_PutPsz( p_intf, "equalizer-bands", psz_values );
  221.         /* save to vlcrc */
  222.         config_SaveConfigFile( p_intf, "equalizer" );
  223.     }
  224.     vlc_object_release( p_object );
  225. }
  226. - (IBAction)changePreset:(id)sender
  227. {
  228.     intf_thread_t *p_intf = VLCIntf;
  229.     int i;
  230.     vlc_object_t *p_object= vlc_object_find( p_intf,
  231.                                              VLC_OBJECT_AOUT, FIND_ANYWHERE );
  232.     if( p_object == NULL )
  233.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  234.     var_SetString( p_object , "equalizer-preset" , preset_list[[sender indexOfSelectedItem]] );
  235.     NSString *preset = @"";
  236.     const char *psz_values;
  237.     for( i = 0; i < 10; i++ )
  238.     {
  239.         preset = [preset stringByAppendingFormat:@"%.1f ", eqz_preset_10b[[sender indexOfSelectedItem]]->f_amp[i] ];
  240.     }
  241.     psz_values = [preset UTF8String];
  242.     var_SetString( p_object, "equalizer-bands", psz_values );
  243.     var_SetFloat( p_object, "equalizer-preamp", eqz_preset_10b[[sender indexOfSelectedItem]]->f_preamp);
  244.     [o_slider_preamp setFloatValue: eqz_preset_10b[[sender indexOfSelectedItem]]->f_preamp];
  245.     [self setBandSlidersValues:(float *)eqz_preset_10b[[sender indexOfSelectedItem]]->f_amp];
  246.     if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES )
  247.     {
  248.         /* save changed to config */
  249.         config_PutPsz( p_intf, "equalizer-bands", psz_values );
  250.         config_PutFloat( p_intf, "equalizer-preamp", eqz_preset_10b[[sender indexOfSelectedItem]]->f_preamp );
  251.         config_PutPsz( p_intf, "equalizer-preset", preset_list[[sender indexOfSelectedItem]] );
  252.         /* save to vlcrc */
  253.         config_SaveConfigFile( p_intf, "equalizer" );
  254.     }
  255.     vlc_object_release( p_object );
  256. }
  257. - (IBAction)enable:(id)sender
  258. {
  259.     ChangeFiltersString( VLCIntf, (char *)"equalizer", [sender state] );
  260. }
  261. - (IBAction)preampSliderUpdated:(id)sender
  262. {
  263.     intf_thread_t *p_intf = VLCIntf;
  264.     float f_preamp = [sender floatValue] ;
  265.     vlc_object_t *p_object = vlc_object_find( p_intf,
  266.                                               VLC_OBJECT_AOUT, FIND_ANYWHERE );
  267.     if( p_object == NULL )
  268.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  269.     var_SetFloat( p_object, "equalizer-preamp", f_preamp );
  270.     if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES )
  271.     {
  272.         /* save changed to config */
  273.         config_PutFloat( p_intf, "equalizer-preamp", f_preamp );
  274.         /* save to vlcrc */
  275.         config_SaveConfigFile( p_intf, "equalizer" );
  276.     }
  277.     vlc_object_release( p_object );
  278. }
  279. - (IBAction)toggleWindow:(id)sender
  280. {
  281.     if( [o_window isVisible] )
  282.     {
  283.         [o_window orderOut:sender];
  284.         [o_btn_equalizer setState:NSOffState];
  285.     }
  286.     else
  287.     {
  288.         [o_window makeKeyAndOrderFront:sender];
  289.         [o_btn_equalizer setState:NSOnState];
  290.     }
  291. }
  292. - (IBAction)twopass:(id)sender
  293. {
  294.     intf_thread_t *p_intf = VLCIntf;
  295.     bool b_2p = [sender state] ? true : false;
  296.     vlc_object_t *p_object= vlc_object_find( p_intf,
  297.                                              VLC_OBJECT_AOUT, FIND_ANYWHERE );
  298.     aout_instance_t *p_aout = (aout_instance_t *)p_object;
  299.     if( p_object == NULL )
  300.         p_object = (vlc_object_t *)pl_Hold( p_intf );
  301.     var_SetBool( p_object, "equalizer-2pass", b_2p );
  302.     if( ( [o_ckb_enable state] ) && ( p_aout != NULL ) )
  303.     {
  304.         int i;
  305.         for( i = 0; i < p_aout->i_nb_inputs; i++ )
  306.         {
  307.             p_aout->pp_inputs[i]->b_restart = true;
  308.         }
  309.     }
  310.     if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES )
  311.     {
  312.         /* save changed to config */
  313.         config_PutInt( p_intf, "equalizer-2pass", (int)b_2p );
  314.         /* save to vlcrc */
  315.         config_SaveConfigFile( p_intf, "equalizer" );
  316.     }
  317.     vlc_object_release( p_object );
  318. }
  319. - (void)windowWillClose:(NSNotification *)aNotification
  320. {
  321.     [o_btn_equalizer setState: NSOffState];
  322. }
  323. - (void)awakeFromNib
  324. {
  325.     int i;
  326.     vlc_object_t *p_object= vlc_object_find( VLCIntf,
  327.                                              VLC_OBJECT_AOUT, FIND_ANYWHERE );
  328.     if( p_object == NULL )
  329.         p_object = (vlc_object_t *)pl_Hold( VLCIntf );
  330.     [o_window setExcludedFromWindowsMenu: TRUE];
  331.     [self initStrings];
  332.     if( p_object )
  333.     {
  334.         char *psz_preset;
  335.         var_Create( p_object, "equalizer-preset", VLC_VAR_STRING |
  336.                     VLC_VAR_DOINHERIT );
  337.         psz_preset = var_GetNonEmptyString( p_object, "equalizer-preset" );
  338.         for( i = 0 ; (psz_preset != NULL) && (i < 18) ; i++ )
  339.         {
  340.             if( strcmp( preset_list[i], psz_preset ) )
  341.                 continue;
  342.     
  343.             [o_popup_presets selectItemAtIndex: i];
  344.         
  345.             [o_slider_preamp setFloatValue: eqz_preset_10b[i]->f_preamp];
  346.             [self setBandSlidersValues: (float *)eqz_preset_10b[i]->f_amp];
  347.             if( strcmp( psz_preset, "flat" ) )
  348.             {
  349.                 char psz_bands[100];
  350.     
  351.                 snprintf( psz_bands, sizeof( psz_bands ),
  352.                           "%.1f %.1f %.1f %.1f %.1f %.1f %.1f "
  353.                           "%.1f %.1f %.1f",
  354.                           eqz_preset_10b[i]->f_amp[0],
  355.                           eqz_preset_10b[i]->f_amp[1],
  356.                           eqz_preset_10b[i]->f_amp[2],
  357.                           eqz_preset_10b[i]->f_amp[3],
  358.                           eqz_preset_10b[i]->f_amp[4],
  359.                           eqz_preset_10b[i]->f_amp[5],
  360.                           eqz_preset_10b[i]->f_amp[6],
  361.                           eqz_preset_10b[i]->f_amp[7],
  362.                           eqz_preset_10b[i]->f_amp[8],
  363.                           eqz_preset_10b[i]->f_amp[9] );
  364.     
  365.                 var_Create( p_object, "equalizer-preamp", VLC_VAR_FLOAT |
  366.                             VLC_VAR_DOINHERIT );
  367.                 var_Create( p_object, "equalizer-bands", VLC_VAR_STRING |
  368.                             VLC_VAR_DOINHERIT );
  369.                 var_SetFloat( p_object, "equalizer-preamp",
  370.                               eqz_preset_10b[i]->f_preamp );
  371.                 var_SetString( p_object, "equalizer-bands", psz_bands );
  372.             }
  373.         }
  374.         free( psz_preset );
  375.         vlc_object_release( p_object );
  376.     }
  377.     [self equalizerUpdated];    
  378. }
  379. - (id)sliderByIndex:(int)index
  380. {
  381.     switch(index)
  382.     {
  383.         case 0 : return o_slider_band1;
  384.         case 1 : return o_slider_band2;
  385.         case 2 : return o_slider_band3;
  386.         case 3 : return o_slider_band4;
  387.         case 4 : return o_slider_band5;
  388.         case 5 : return o_slider_band6;
  389.         case 6 : return o_slider_band7;
  390.         case 7 : return o_slider_band8;
  391.         case 8 : return o_slider_band9;
  392.         case 9 : return o_slider_band10;
  393.         default : return nil;
  394.     }
  395. }
  396. - (void)setBandSlidersValues:(float *)values
  397. {
  398.     int i = 0;
  399.     for (i = 0 ; i<= 9 ; i++)
  400.     {
  401.         [self setValue:values[i] forSlider:i];
  402.     }
  403. }
  404. - (void)initBandSliders
  405. {
  406.     int i = 0;
  407.     for (i = 0 ; i< 9 ; i++)
  408.     {
  409.         [self setValue:0.0 forSlider:i];
  410.     }
  411. }
  412. - (void)setValue:(float)value forSlider:(int)index
  413. {
  414.     id slider = [self sliderByIndex:index];
  415.     if (slider != nil)
  416.     {
  417.         [slider setFloatValue:value];
  418.     }
  419. }
  420. @end