Implement the ability to configure and select an HRIR preset to use with the HRIR filter, or remove the preset. It will validate the file's usefulness before setting it for the player to use. Also, fixed back center channel filtering for 7.0 format audio. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
21 lines
446 B
Objective-C
21 lines
446 B
Objective-C
//
|
|
// OutputPane.h
|
|
// Preferences
|
|
//
|
|
// Created by Vincent Spader on 9/4/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "GeneralPreferencePane.h"
|
|
#import "OutputsArrayController.h"
|
|
|
|
@interface OutputPane : GeneralPreferencePane {
|
|
IBOutlet OutputsArrayController *outputDevices;
|
|
}
|
|
|
|
- (IBAction) takeDeviceID:(id)sender;
|
|
- (IBAction) setHrir:(id)sender;
|
|
- (IBAction) clearHrir:(id)sender;
|
|
|
|
@end
|