Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
448f14dd
Commit
448f14dd
authored
Apr 26, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: completed audio effects panel implementation
parent
04d990b1
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
862 additions
and
167 deletions
+862
-167
NEWS
NEWS
+1
-0
extras/package/macosx/Resources/English.lproj/AudioEffects.nib/designable.nib
...x/Resources/English.lproj/AudioEffects.nib/designable.nib
+558
-153
extras/package/macosx/Resources/English.lproj/AudioEffects.nib/keyedobjects.nib
...Resources/English.lproj/AudioEffects.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/AudioEffects.h
modules/gui/macosx/AudioEffects.h
+23
-0
modules/gui/macosx/AudioEffects.m
modules/gui/macosx/AudioEffects.m
+279
-14
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-0
No files found.
NEWS
View file @
448f14dd
...
...
@@ -55,6 +55,7 @@ Interfaces
* Skins2: fullscreen controller support, relative placement support
and important cleanups and optimisations
* ncurses: heavy refactor of the complete interface
* Mac OS X: new Audio Effects panel adding Compressor and Spatializer filters
* The rc and telnet lua interfaces were merged into a new "cli" interface
* removal of old telnet interface in favor of the new lua CLI
* removal of http interface in favor of luahttp
...
...
extras/package/macosx/Resources/English.lproj/AudioEffects.nib/designable.nib
View file @
448f14dd
This diff is collapsed.
Click to expand it.
extras/package/macosx/Resources/English.lproj/AudioEffects.nib/keyedobjects.nib
View file @
448f14dd
No preview for this file type
modules/gui/macosx/AudioEffects.h
View file @
448f14dd
...
...
@@ -29,6 +29,7 @@
/* generic */
IBOutlet
id
o_tableView
;
IBOutlet
id
o_window
;
intf_thread_t
*
p_intf
;
/* Equalizer */
IBOutlet
id
o_eq_enable_ckb
;
...
...
@@ -49,6 +50,7 @@
/* Compressor */
IBOutlet
id
o_comp_enable_ckb
;
IBOutlet
id
o_comp_reset_btn
;
IBOutlet
id
o_comp_band1_sld
;
IBOutlet
id
o_comp_band1_fld
;
IBOutlet
id
o_comp_band1_lbl
;
...
...
@@ -73,6 +75,7 @@
/* Spatializer */
IBOutlet
id
o_spat_enable_ckb
;
IBOutlet
id
o_spat_reset_btn
;
IBOutlet
id
o_spat_band1_sld
;
IBOutlet
id
o_spat_band1_fld
;
IBOutlet
id
o_spat_band1_lbl
;
...
...
@@ -99,6 +102,8 @@
/* generic */
+
(
VLCAudioEffects
*
)
sharedInstance
;
-
(
IBAction
)
toggleWindow
:(
id
)
sender
;
-
(
void
)
setAudioFilter
:
(
char
*
)
psz_name
on
:(
BOOL
)
b_on
;
-
(
void
)
savePrefs
;
/* Equalizer */
-
(
void
)
setupEqualizer
;
...
...
@@ -112,4 +117,22 @@
-
(
IBAction
)
eq_preampSliderUpdated
:(
id
)
sender
;
-
(
IBAction
)
eq_twopass
:(
id
)
sender
;
/* Compressor */
-
(
void
)
resetCompressor
;
-
(
IBAction
)
resetCompressorValues
:(
id
)
sender
;
-
(
IBAction
)
comp_enable
:(
id
)
sender
;
-
(
IBAction
)
comp_sliderUpdated
:(
id
)
sender
;
/* Spatializer */
-
(
void
)
resetSpatializer
;
-
(
IBAction
)
resetSpatializerValues
:(
id
)
sender
;
-
(
IBAction
)
spat_enable
:(
id
)
sender
;
-
(
IBAction
)
spat_sliderUpdated
:(
id
)
sender
;
/* Filter */
-
(
void
)
resetAudioFilters
;
-
(
IBAction
)
filter_enableHeadPhoneVirt
:(
id
)
sender
;
-
(
IBAction
)
filter_enableVolumeNorm
:(
id
)
sender
;
-
(
IBAction
)
filter_volNormSliderUpdated
:(
id
)
sender
;
@end
modules/gui/macosx/AudioEffects.m
View file @
448f14dd
This diff is collapsed.
Click to expand it.
modules/gui/macosx/intf.m
View file @
448f14dd
...
...
@@ -821,6 +821,7 @@ static VLCMain *_o_sharedMainInstance = nil;
/* save the prefs if they were changed in the extended panel */
if
(
o_extended
&&
[
o_extended
configChanged
])
[
o_extended
savePrefs
];
[
o_audioeffects
savePrefs
];
/* unsubscribe from the interactive dialogues */
dialog_Unregister
(
p_intf
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment