]> git.sesse.net Git - vlc/blob - modules/gui/macosx/extended.m
macosx: Fix motionblur and zoom in extended panel.
[vlc] / modules / gui / macosx / extended.m
1 /*****************************************************************************
2  * extended.m: MacOS X Extended interface panel
3  *****************************************************************************
4  * Copyright (C) 2005-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #import "extended.h"
30 #import "vout.h"
31 #import <vlc_aout.h>
32 #import <vlc_vout.h>
33 #import <vlc_interface.h>
34
35 /*****************************************************************************
36  * VLCExtended implementation
37  *****************************************************************************/
38
39 @implementation VLCExtended
40
41 static VLCExtended *_o_sharedInstance = nil;
42
43 + (VLCExtended *)sharedInstance
44 {
45     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
46 }
47
48 - (id)init
49 {
50     if (_o_sharedInstance) {
51         [self dealloc];
52     } else {
53         _o_sharedInstance = [super init];
54     }
55
56     return _o_sharedInstance;
57 }
58
59 /*****************************************************************************
60  * GUI methods
61  *****************************************************************************/
62
63 - (void)initStrings
64 {
65     /* localise GUI-strings */
66     /* method is called from intf.m (in method showExtended) */
67     [o_extended_window setTitle: _NS("Extended controls")];
68     [o_btn_vidFlts_mrInfo setToolTip: _NS("Shows more information about the available video filters.")];
69     [o_ckb_wave setTitle: _NS("Wave")];
70     [o_ckb_ripple setTitle: _NS("Ripple")];
71     [o_ckb_psycho setTitle: _NS("Psychedelic")];
72     [o_ckb_gradient setTitle: _NS("Gradient")];
73     [o_lbl_general setStringValue: _NS("General editing filters")];
74     [o_lbl_distort setStringValue: _NS("Distortion filters")];
75     [o_ckb_blur setTitle: _NS("Blur")];
76     [o_ckb_blur setToolTip: _NS("Adds motion blurring to the image")];
77     [o_ckb_imgClone setTitle: _NS("Image clone")];
78     [o_ckb_imgClone setToolTip: _NS("Creates several copies of the Video "
79                                     "output window" )];
80     [o_ckb_imgCrop setTitle: _NS("Image cropping")];
81     [o_ckb_imgCrop setToolTip: _NS("Crops a defined part of the image")];
82     [o_ckb_imgInvers setTitle: _NS("Invert colors")];
83     [o_ckb_imgInvers setToolTip: _NS("Inverts the colors of the image")];
84     [o_ckb_trnsform setTitle: _NS("Transformation")];
85     [o_ckb_trnsform setToolTip: _NS("Rotates or flips the image")];
86     [o_ckb_intZoom setTitle: _NS("Interactive Zoom")];
87     [o_ckb_intZoom setToolTip: _NS("Enables an interactive Zoom feature")];
88     [o_ckb_vlme_norm setTitle: _NS("Volume normalization")];
89     [o_ckb_vlme_norm setToolTip: _NS("Prevents the audio output from going "
90                                      "over a predefined value.")];
91     [o_ckb_hdphnVirt setTitle: _NS("Headphone virtualization")];
92     [o_ckb_hdphnVirt setToolTip: _NS("Imitates the effect of surround sound "
93                                      "when using headphones.")];
94     [o_lbl_maxLevel setStringValue: _NS("Maximum level")];
95     [o_btn_rstrDefaults setTitle: _NS("Restore Defaults")];
96     [o_ckb_enblAdjustImg setTitle: _NS("Enable")];
97     [o_lbl_brightness setStringValue: _NS("Brightness")];
98     [o_lbl_contrast setStringValue: _NS("Contrast")];
99     [o_lbl_gamma setStringValue: _NS("Gamma")];
100     [o_lbl_hue setStringValue: _NS("Hue")];
101     [o_lbl_saturation setStringValue: _NS("Saturation")];
102     [o_lbl_opaque setStringValue: _NS("Opaqueness")];
103  
104 }
105
106 - (void)awakeFromNib
107 {
108     /* set the adjust-filter-sliders to the values from the prefs and enable
109      * them, if wanted */
110     char * psz_vfilters;
111     intf_thread_t * p_intf = VLCIntf;
112     psz_vfilters = config_GetPsz( p_intf, "vout-filter" );
113     /* set the video-filter-checkboxes to the correct values */
114     if( psz_vfilters )
115     {
116         [o_ckb_blur setState: (int)strstr( psz_vfilters, "motionblur")];
117         [o_ckb_imgClone setState: (int)strstr( psz_vfilters, "clone")];
118         [o_ckb_imgCrop setState: (int)strstr( psz_vfilters, "crop")];
119         [o_ckb_trnsform setState: (int)strstr( psz_vfilters, "transform")];
120         [o_ckb_intZoom setState: (int)strstr( psz_vfilters, "magnify")];
121
122         free( psz_vfilters );
123     }
124  
125     /* set the video-filter checkboxes to the correct values */
126     char * psz_vifilters;
127     psz_vifilters = config_GetPsz( p_intf, "video-filter" );
128     if( psz_vifilters && strstr( psz_vifilters, "adjust" ) )
129     {
130         [o_ckb_enblAdjustImg setState: NSOnState];
131         [o_btn_rstrDefaults setEnabled: YES];
132         [o_sld_brightness setEnabled: YES];
133         [o_sld_contrast setEnabled: YES];
134         [o_sld_gamma setEnabled: YES];
135         [o_sld_hue setEnabled: YES];
136         [o_sld_saturation setEnabled: YES];
137     }
138     else
139     {
140         [o_ckb_enblAdjustImg setState: NSOffState];
141         [o_btn_rstrDefaults setEnabled: NO];
142         [o_sld_brightness setEnabled: NO];
143         [o_sld_contrast setEnabled: NO];
144         [o_sld_gamma setEnabled: NO];
145         [o_sld_hue setEnabled: NO];
146         [o_sld_saturation setEnabled: NO];
147     }
148     if( psz_vifilters )
149     {
150         [o_ckb_wave setState: (int)strstr( psz_vifilters, "wave")];
151         [o_ckb_psycho setState: (int)strstr( psz_vifilters, "psychedelic")];
152         [o_ckb_ripple setState: (int)strstr( psz_vifilters, "ripple")];
153         [o_ckb_gradient setState: (int)strstr( psz_vifilters, "gradient")];
154         [o_ckb_imgInvers setState: (int)strstr( psz_vifilters, "invert")];
155
156         free( psz_vifilters );
157     }
158  
159     /* set the audio-filter-checkboxes to the values taken from the prefs */
160     char * psz_afilters;
161     psz_afilters = config_GetPsz( p_intf, "audio-filter" );
162     if( psz_afilters )
163     {
164         [o_ckb_hdphnVirt setState: (int)strstr( psz_afilters, "headphone" ) ];
165         [o_ckb_vlme_norm setState: (int)strstr( psz_afilters, "normvol" ) ];
166  
167         free( psz_afilters );
168     }
169
170     /* fill the popup button according to our available views */
171     [o_selector_pop removeAllItems];
172     [o_selector_pop addItemWithTitle: _NS("Adjust Image")];
173     [o_selector_pop addItemWithTitle: _NS("Video Filter")];
174     [o_selector_pop addItemWithTitle: _NS("Audio Filter")];
175     [o_selector_pop selectItemAtIndex: 0];
176
177     /* make sure we draw a view on launch */
178     [self viewSelectorAction: self];
179
180     [self initStrings];
181 }
182
183 - (BOOL)getConfigChanged
184 {
185     return o_config_changed;
186 }
187
188 - (void)showPanel
189 {
190     /* get the correct slider values from the prefs, in case they were changed
191      * elsewhere */
192     intf_thread_t * p_intf = VLCIntf;
193
194     int i_value = config_GetInt( p_intf, "hue" );
195     if( i_value > 0 && i_value < 360 )
196     {
197         [o_sld_hue setIntValue: i_value];
198     }
199
200     float f_value;
201  
202     f_value = config_GetFloat( p_intf, "saturation" );
203     if( f_value > 0 && f_value < 5 )
204         [o_sld_saturation setIntValue: (int)(100 * f_value) ];
205
206     f_value = config_GetFloat( p_intf, "contrast" );
207     if( f_value > 0 && f_value < 4 )
208         [o_sld_contrast setIntValue: (int)(100 * f_value) ];
209
210     f_value = config_GetFloat( p_intf, "brightness" );
211     if( f_value > 0 && f_value < 2 )
212         [o_sld_brightness setIntValue: (int)(100 * f_value) ];
213
214     f_value = config_GetFloat( p_intf, "gamma" );
215     if( f_value > 0 && f_value < 10 )
216         [o_sld_gamma setIntValue: (int)(10 * f_value) ];
217
218     f_value = config_GetFloat( p_intf, "norm-max-level" );
219     if( f_value > 0 && f_value < 10 )
220         [o_sld_maxLevel setFloatValue: f_value ];
221
222     [o_sld_opaque setFloatValue: (config_GetFloat( p_intf,
223         "macosx-opaqueness") * 100)];
224
225     /* show the window */
226     [o_extended_window displayIfNeeded];
227     [o_extended_window makeKeyAndOrderFront:nil];
228 }
229
230 - (IBAction)viewSelectorAction:(id)sender
231 {
232     NSView *o_toBeShown_view;
233     /* check which view to show */
234     if( [[[o_selector_pop selectedItem] title] isEqualToString: _NS("Adjust Image")] )
235         o_toBeShown_view = o_adjustImg_view;
236     else if( [[[o_selector_pop selectedItem] title] isEqualToString: _NS("Audio Filter")] )
237         o_toBeShown_view = o_audioFlts_view;
238     else if( [[[o_selector_pop selectedItem] title] isEqualToString: _NS("Video Filter")] )
239         o_toBeShown_view = o_videoFilters_view;
240     else
241         msg_Err( VLCIntf, "invalid ui view requested" );
242     
243     NSRect o_win_rect, o_view_rect, o_old_view_rect;
244     o_win_rect = [o_extended_window frame];
245     o_view_rect = [o_toBeShown_view frame];
246     
247     if( o_currentlyshown_view != nil )
248     {
249         /* restore our window's height, if we've shown another category previously */
250         o_old_view_rect = [o_currentlyshown_view frame];
251         o_win_rect.size.height = o_win_rect.size.height - o_old_view_rect.size.height;
252         o_win_rect.origin.y = ( o_win_rect.origin.y + o_old_view_rect.size.height ) - o_view_rect.size.height;
253         
254         /* remove our previous category view */
255         [o_currentlyshown_view removeFromSuperviewWithoutNeedingDisplay];
256     }
257     
258     o_win_rect.size.height = o_win_rect.size.height + o_view_rect.size.height;
259     
260     //[o_extended_window displayIfNeeded];
261     [o_extended_window setFrame: o_win_rect display:YES animate: YES];
262     
263     [o_toBeShown_view setFrame: NSMakeRect( 0, 
264                                               0, //[o_top_controls_box frame].size.height, 
265                                               o_view_rect.size.width, 
266                                               o_view_rect.size.height )];
267     [o_toBeShown_view setNeedsDisplay: YES];
268     [o_toBeShown_view setAutoresizesSubviews: YES];
269     [[o_extended_window contentView] addSubview: o_toBeShown_view];
270
271     /* keep our current category for further reference */
272     [o_currentlyshown_view release];
273     o_currentlyshown_view = o_toBeShown_view;
274     [o_currentlyshown_view retain];
275 }
276
277 - (IBAction)enableAdjustImage:(id)sender
278 {
279     /* en-/disable the sliders */
280     if ([o_ckb_enblAdjustImg state] == NSOnState)
281     {
282         [o_btn_rstrDefaults setEnabled: YES];
283         [o_sld_brightness setEnabled: YES];
284         [o_sld_contrast setEnabled: YES];
285         [o_sld_gamma setEnabled: YES];
286         [o_sld_hue setEnabled: YES];
287         [o_sld_saturation setEnabled: YES];
288         [self changeVideoFiltersString: "adjust" onOrOff: true];
289     }
290     else
291     {
292         [o_btn_rstrDefaults setEnabled: NO];
293         [o_sld_brightness setEnabled: NO];
294         [o_sld_contrast setEnabled: NO];
295         [o_sld_gamma setEnabled: NO];
296         [o_sld_hue setEnabled: NO];
297         [o_sld_saturation setEnabled: NO];
298         [self changeVideoFiltersString: "adjust" onOrOff: false];
299     }
300 }
301
302 - (IBAction)restoreDefaultsForAdjustImage:(id)sender
303 {
304     /* reset the sliders */
305     [o_sld_brightness setIntValue: 100];
306     [o_sld_contrast setIntValue: 100];
307     [o_sld_gamma setIntValue: 10];
308     [o_sld_hue setIntValue: 0];
309     [o_sld_saturation setIntValue: 100];
310     [o_sld_opaque setIntValue: 100];
311
312     /* transmit the values */
313     [self sliderActionAdjustImage: o_sld_brightness];
314     [self sliderActionAdjustImage: o_sld_contrast];
315     [self sliderActionAdjustImage: o_sld_gamma];
316     [self sliderActionAdjustImage: o_sld_hue];
317     [self sliderActionAdjustImage: o_sld_saturation];
318     [self opaqueSliderAction: o_sld_opaque];
319 }
320
321 - (IBAction)sliderActionAdjustImage:(id)sender
322 {
323     /* read-out the sliders' values and apply them */
324     intf_thread_t * p_intf = VLCIntf;
325     vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find(p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE);
326     vlc_object_t *p_filter;
327
328     if( p_vout == NULL )
329     {
330         msg_Dbg( p_intf, "no vout present, saving settings anyway" );
331         if (sender == o_sld_brightness)
332         {
333             config_PutFloat( p_intf , "brightness" , [o_sld_brightness floatValue] / 100);
334         } 
335         else if (sender == o_sld_contrast)
336         {
337             config_PutFloat( p_intf , "contrast" , [o_sld_contrast floatValue] / 100);
338         } 
339         else if (sender == o_sld_gamma)
340         {
341             config_PutFloat( p_intf , "gamma" , [o_sld_gamma floatValue] / 10);
342         } 
343         else if (sender == o_sld_hue)
344         {
345             config_PutInt( p_intf , "hue" , [o_sld_hue intValue]);
346         } 
347         else if (sender == o_sld_saturation)
348         {
349             config_PutFloat( p_intf , "saturation" , [o_sld_saturation floatValue] / 100);
350         } 
351         else
352         {
353             msg_Warn( p_intf, "the corresponding subfilter coundn't be found" );
354         }
355     } 
356     else
357     {
358         msg_Dbg( p_intf, "we found a vout to adjust, let's look for the filter" );
359         p_filter = (vlc_object_t *)vlc_object_find_name( p_intf, "adjust", FIND_ANYWHERE );
360
361         if(! p_filter )
362         {
363             msg_Err( p_intf, "we're unable to find the adjust filter!" );
364             vlc_object_release( p_vout );
365             return;
366         }
367
368         if (sender == o_sld_brightness)
369         {
370             var_SetFloat( p_filter, "brightness", [o_sld_brightness floatValue] / 100 );
371             config_PutFloat( p_intf, "brightness", [o_sld_brightness floatValue] / 100 );
372         } 
373         else if (sender == o_sld_contrast)
374         {
375             var_SetFloat( p_filter, "contrast", [o_sld_contrast floatValue] / 100 );
376             config_PutFloat( p_intf, "contrast", [o_sld_contrast floatValue] / 100 );
377         } 
378         else if (sender == o_sld_gamma)
379         {
380             var_SetFloat( p_filter, "gamma", [o_sld_gamma floatValue] / 10 );
381             config_PutFloat( p_intf, "gamma", [o_sld_gamma floatValue] / 10 );
382         } 
383         else if (sender == o_sld_hue)
384         {
385             var_SetInteger( p_filter, "hue", [o_sld_hue intValue] );
386             config_PutInt( p_intf , "hue" , [o_sld_hue intValue] );
387         } 
388         else if (sender == o_sld_saturation)
389         {
390             var_SetFloat( p_filter, "saturation", [o_sld_saturation floatValue] / 100 );
391             config_PutFloat( p_intf , "saturation" , [o_sld_saturation floatValue] / 100 );
392         } 
393         else
394         {
395             msg_Warn( p_intf, "couldn't find variable for slider!" );
396         }
397         vlc_object_release( p_filter );
398         vlc_object_release( p_vout );
399     }
400
401     o_config_changed = YES;
402 }
403
404 /* change the opaqueness of the vouts */
405 - (IBAction)opaqueSliderAction:(id)sender
406 {
407     vlc_value_t val;
408     id o_window = [NSApp keyWindow];
409     NSArray *o_windows = [NSApp orderedWindows];
410     NSEnumerator *o_enumerator = [o_windows objectEnumerator];
411     playlist_t * p_playlist = pl_Yield( VLCIntf );
412     vout_thread_t *p_vout = vlc_object_find( VLCIntf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
413     vout_thread_t *p_real_vout;
414
415     val.f_float = [o_sld_opaque floatValue] / 100;
416
417     if( p_vout != NULL )
418     {
419         p_real_vout = [VLCVoutView getRealVout: p_vout];
420         var_Set( p_real_vout, "macosx-opaqueness", val );
421
422         while ((o_window = [o_enumerator nextObject]))
423         {
424             if( [[o_window className] isEqualToString: @"VLCVoutWindow"] ||
425                 [[[VLCMain sharedInstance] getEmbeddedList]
426                                     windowContainsEmbedded: o_window])
427             {
428                 [o_window setAlphaValue: val.f_float];
429             }
430             break;
431         }
432         vlc_object_release( p_vout );
433     }
434
435     /* store to prefs */
436     config_PutFloat( p_playlist , "macosx-opaqueness" , val.f_float );
437
438     vlc_object_release( p_playlist );
439
440     o_config_changed = YES;
441 }
442
443 - (IBAction)enableHeadphoneVirtualizer:(id)sender
444 {
445     /* en-/disable headphone virtualisation */
446     if ([o_ckb_hdphnVirt state] == NSOnState)
447         [self changeAFiltersString: "headphone_channel_mixer" onOrOff: true ];
448     else
449         [self changeAFiltersString: "headphone_channel_mixer" onOrOff: false ];
450 }
451
452 - (IBAction)sliderActionMaximumAudioLevel:(id)sender
453 {
454     /* read-out the slider's value and apply it */
455     intf_thread_t * p_intf = VLCIntf;
456     aout_instance_t * p_aout= (aout_instance_t *)vlc_object_find(p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE);
457
458     if( p_aout != NULL )
459     {
460         var_SetFloat( p_aout, "norm-max-level", [o_sld_maxLevel floatValue] );
461         vlc_object_release( p_aout );
462     }
463
464     config_PutFloat( p_intf, "norm-max-level", [o_sld_maxLevel floatValue] );
465
466     o_config_changed = YES;
467 }
468
469 - (IBAction)enableVolumeNormalization:(id)sender
470 {
471     /* en-/disable volume normalisation */
472     if( [o_ckb_vlme_norm state] == NSOnState )
473         [self changeAFiltersString: "normvol" onOrOff: YES ];
474     else
475         [self changeAFiltersString: "normvol" onOrOff: NO ];
476 }
477
478 - (IBAction)videoFilterAction:(id)sender
479 {
480     /* en-/disable video filters */
481     if (sender == o_ckb_blur)
482         [self changeVideoFiltersString: "motionblur" onOrOff: [o_ckb_blur state]];
483
484     else if (sender == o_ckb_imgClone)
485         [self changeVoutFiltersString: "clone" onOrOff: [o_ckb_imgClone state]];
486
487     else if (sender == o_ckb_imgCrop)
488         [self changeVoutFiltersString: "crop" onOrOff: [o_ckb_imgCrop state]];
489
490     else if (sender == o_ckb_imgInvers)
491         [self changeVideoFiltersString: "invert" onOrOff: [o_ckb_imgInvers state]];
492
493     else if (sender == o_ckb_trnsform)
494         [self changeVoutFiltersString: "transform" onOrOff: [o_ckb_trnsform state]];
495
496     else if (sender == o_ckb_intZoom )
497         [self changeVoutFiltersString: "magnify" onOrOff: [o_ckb_intZoom state]];
498
499     else if (sender == o_ckb_wave )
500         [self changeVideoFiltersString: "wave" onOrOff: [o_ckb_wave state]];
501
502     else if (sender == o_ckb_gradient )
503         [self changeVideoFiltersString: "gradient" onOrOff: [o_ckb_gradient state]];
504
505     else if (sender == o_ckb_psycho )
506         [self changeVideoFiltersString: "psychedelic" onOrOff: [o_ckb_psycho state]];
507
508     else if (sender == o_ckb_ripple )
509         [self changeVideoFiltersString: "ripple" onOrOff: [o_ckb_ripple state]];
510
511     else
512         msg_Err( VLCIntf, "cannot find switched video-filter" ); /* this can't happen */
513 }
514
515 - (IBAction)moreInfoVideoFilters:(id)sender
516 {
517     /* show info sheet */
518     NSBeginInformationalAlertSheet(_NS("About the video filters"), 
519                                    _NS("OK"), 
520                                    @"", 
521                                    @"",
522                                    o_extended_window, 
523                                    nil, 
524                                    nil, 
525                                    nil, 
526                                    nil, 
527                                    _NS("This panel allows on-the-fly selection of various video effects.\n"
528                                        "These filters can be configured individually in the Preferences, in "
529                                        "the subsections of Video/Filters.\n"
530                                        "To choose the order in which the filter are applied, a filter "
531                                        "option string can be set in the Preferences, Video / Filters section."));
532 }
533
534
535 /*****************************************************************************
536  * methods to communicate changes to VLC's core
537  *****************************************************************************/
538
539 - (void)changeVoutFiltersString:(char *)psz_name onOrOff:(bool )b_add
540 {
541     /* copied from ../wxwidgets/extrapanel.cpp
542      * renamed to conform with Cocoa's rules */
543     /* this method only changes 1st generation video filters (the ones that
544      * can't be used for transcoding). Have a look at changeVideoFiltersString
545      * for the 2nd generation filters. */
546  
547     vout_thread_t *p_vout;
548     intf_thread_t * p_intf = VLCIntf;
549  
550     char *psz_parser, *psz_string;
551     psz_string = config_GetPsz( p_intf, "vout-filter" );
552  
553     if( !psz_string ) psz_string = strdup("");
554
555     psz_parser = strstr( psz_string, psz_name );
556
557     if( b_add )
558     {
559         if( !psz_parser )
560         {
561             psz_parser = psz_string;
562             asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
563                             psz_string, psz_name );
564             free( psz_parser );
565         }
566         else
567         {
568             return;
569         }
570     }
571     else
572     {
573         if( psz_parser )
574         {
575             memmove( psz_parser, psz_parser + strlen(psz_name) +
576                             (*(psz_parser + strlen(psz_name)) == ':' ? 1 : 0 ),
577                             strlen(psz_parser + strlen(psz_name)) + 1 );
578
579             /* Remove trailing : : */
580             if( *(psz_string+strlen(psz_string ) -1 ) == ':' )
581             {
582                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
583             }
584          }
585          else
586          {
587              free( psz_string );
588              return;
589          }
590     }
591     /* Vout is not kept, so put that in the config */
592     config_PutPsz( p_intf, "vout-filter", psz_string );
593
594     /* Try to set on the fly */
595     p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
596                                               FIND_ANYWHERE );
597     if( p_vout )
598     {
599         var_SetString( p_vout, "vout-filter", psz_string );
600         vlc_object_release( p_vout );
601     }
602
603     free( psz_string );
604
605     o_config_changed = YES;
606 }
607
608
609 - (void)changeVideoFiltersString:(char *)psz_name onOrOff:(bool )b_add
610 {
611     /* same as changeVoutFiltersString but addressing the "video-filter"
612      * variable which represents the video filter 2 modules */
613  
614     vout_thread_t *p_vout;
615     intf_thread_t * p_intf = VLCIntf;
616  
617     char *psz_parser, *psz_string;
618     psz_string = config_GetPsz( p_intf, "video-filter" );
619  
620     if( !psz_string ) psz_string = strdup("");
621
622     psz_parser = strstr( psz_string, psz_name );
623
624     if( b_add )
625     {
626         if( !psz_parser )
627         {
628             psz_parser = psz_string;
629             asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
630                             psz_string, psz_name );
631             free( psz_parser );
632         }
633         else
634         {
635             return;
636         }
637     }
638     else
639     {
640         if( psz_parser )
641         {
642             memmove( psz_parser, psz_parser + strlen(psz_name) +
643                             (*(psz_parser + strlen(psz_name)) == ':' ? 1 : 0 ),
644                             strlen(psz_parser + strlen(psz_name)) + 1 );
645
646             /* Remove trailing : : */
647             if( *(psz_string+strlen(psz_string ) -1 ) == ':' )
648             {
649                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
650             }
651          }
652          else
653          {
654              free( psz_string );
655              return;
656          }
657     }
658     /* Vout is not kept, so put that in the config */
659     config_PutPsz( p_intf, "video-filter", psz_string );
660
661     /* Try to set on the fly */
662     p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
663                                               FIND_ANYWHERE );
664     if( p_vout )
665     {
666         var_SetString( p_vout, "video-filter", psz_string );
667         vlc_object_release( p_vout );
668     }
669
670     free( psz_string );
671
672     o_config_changed = YES;
673 }
674
675 - (void)changeAFiltersString: (char *)psz_name onOrOff: (bool )b_add;
676 {
677     /* copied from ../wxwidgets/extrapanel.cpp
678      * renamed to conform with Cocoa's rules */
679
680     char *psz_parser, *psz_string;
681     intf_thread_t * p_intf = VLCIntf;
682     aout_instance_t * p_aout= (aout_instance_t *)vlc_object_find(p_intf,
683                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
684
685     if( p_aout )
686     {
687         psz_string = var_GetNonEmptyString( p_aout, "audio-filter" );
688     }
689     else
690     {
691         psz_string = config_GetPsz( p_intf, "audio-filter" );
692     }
693
694     if( !psz_string ) psz_string = strdup("");
695
696     psz_parser = strstr( psz_string, psz_name );
697
698     if( b_add )
699     {
700         if( !psz_parser )
701         {
702             psz_parser = psz_string;
703             asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
704                             psz_string, psz_name );
705             free( psz_parser );
706         }
707         else
708         {
709             return;
710         }
711     }
712     else
713     {
714         if( psz_parser )
715         {
716             memmove( psz_parser, psz_parser + strlen(psz_name) +
717                             (*(psz_parser + strlen(psz_name)) == ':' ? 1 : 0 ),
718                             strlen(psz_parser + strlen(psz_name)) + 1 );
719
720             if( *(psz_string+strlen(psz_string ) -1 ) == ':' )
721             {
722                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
723             }
724          }
725          else
726          {
727              free( psz_string );
728              return;
729          }
730     }
731
732     if( p_aout == NULL )
733     {
734         config_PutPsz( p_intf, "audio-filter", psz_string );
735     }
736     else
737     {
738         var_SetString( p_aout, "audio-filter", psz_string );
739         int i = 0;
740         while( i < p_aout->i_nb_inputs )
741         {
742             p_aout->pp_inputs[i]->b_restart = true;
743             i = (i + 1);
744         }
745         vlc_object_release( p_aout );
746     }
747     free( psz_string );
748
749     o_config_changed = YES;
750 }
751
752 - (void)savePrefs
753 {
754     /* save the preferences to make sure that our module-changes will up on
755      * next launch again */
756     playlist_t * p_playlist = pl_Yield( VLCIntf );
757     int returnedValue;
758     NSArray * theModules;
759     theModules = [[NSArray alloc] initWithObjects: @"main", 
760         @"headphone",
761         @"transform", 
762         @"adjust", 
763         @"invert", 
764         @"motionblur", 
765         @"distort",
766         @"clone", 
767         @"crop", 
768         @"normvol", 
769         @"headphone_channel_mixer", 
770         @"macosx",
771         nil];
772     unsigned int x = 0;
773  
774     while ( x != [theModules count] )
775     {
776         returnedValue = config_SaveConfigFile( p_playlist, [[theModules
777             objectAtIndex: x] UTF8String] );
778
779         if (returnedValue != 0)
780         {
781             msg_Err(p_playlist, "unable to save the preferences of the "
782             "extended control attribute '%s' (%i)",
783             [[theModules objectAtIndex: x] UTF8String] , returnedValue);
784             [theModules release];
785             vlc_object_release( p_playlist );
786  
787             return;
788         }
789
790         x = ( x + 1 );
791     }
792  
793     msg_Dbg( VLCIntf, "VLCExtended: saved certain preferences successfully" );
794  
795     [theModules release];
796     vlc_object_release( p_playlist );
797 }
798 @end