]> git.sesse.net Git - vlc/blob - projects/macosx/framework/Sources/VLCAudio.m
macosx/framework: Get rid of VLCMediaListAspect, and remove a bunch of exception.
[vlc] / projects / macosx / framework / Sources / VLCAudio.m
1 /*****************************************************************************
2  * VLCAudio.m: VLCKit.framework VLCAudio implementation
3  *****************************************************************************
4  * Copyright (C) 2007 Faustino E. Osuna
5  * Copyright (C) 2007 the VideoLAN team
6  * $Id$
7  *
8  * Authors: Faustino E. Osuna <enrique.osuna # gmail.com>
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 #import "VLCAudio.h"
26 #import "VLCLibVLCBridging.h"
27
28 #define VOLUME_STEP                6
29 #define VOLUME_MAX                 200
30 #define VOLUME_MIN                 0
31
32 /* Notification Messages */
33 NSString * VLCMediaPlayerVolumeChanged = @"VLCMediaPlayerVolumeChanged";
34
35 /* libvlc event callback */
36 // TODO: Callbacks
37
38 @implementation VLCAudio
39
40 - (id)init
41 {
42     return nil;
43 }
44
45 - (id)initWithLibrary:(VLCLibrary *)aLibrary
46 {
47     if (![library audio] && (self = [super init]))
48     {
49         library = aLibrary;
50         [library setAudio:self];
51     }
52     return self;
53 }
54
55 - (void)setMute:(BOOL)value
56 {
57     libvlc_audio_set_mute([library instance], value);
58 }
59
60 - (BOOL)isMuted
61 {
62     return libvlc_audio_get_mute([library instance]);
63 }
64
65 - (void)setVolume:(NSUInteger)value
66 {
67     if (value < VOLUME_MIN)
68         value = VOLUME_MIN;
69     else if (value > VOLUME_MAX)
70         value = VOLUME_MAX;
71     libvlc_audio_set_volume([library instance], value);
72 }
73
74 - (void)volumeUp
75 {
76     NSUInteger tempVolume = [self volume] + VOLUME_STEP;
77     if (tempVolume > VOLUME_MAX)
78         tempVolume = VOLUME_MAX;
79     else if (tempVolume < VOLUME_MIN)
80         tempVolume = VOLUME_MIN;
81     [self setVolume: tempVolume];
82 }
83
84 - (void)volumeDown
85 {
86     NSUInteger tempVolume = [self volume] - VOLUME_STEP;
87     if (tempVolume > VOLUME_MAX)
88         tempVolume = VOLUME_MAX;
89     else if (tempVolume < VOLUME_MIN)
90         tempVolume = VOLUME_MIN;
91     [self setVolume: tempVolume];
92 }
93
94 - (NSUInteger)volume
95 {
96     return libvlc_audio_get_volume([library instance]);
97 }
98 @end