-
Notifications
You must be signed in to change notification settings - Fork 43
/
ECVCaptureDocument.m
executable file
·253 lines (220 loc) · 7.2 KB
/
ECVCaptureDocument.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/* Copyright (c) 2012, Ben Trask
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
#import "ECVCaptureDocument.h"
#import "ECVAudioDevice.h"
#import "ECVAudioTarget.h"
#import "ECVCaptureController.h"
#import "ECVController.h"
#import "ECVDebug.h"
#import "ECVReadWriteLock.h"
static NSString *const ECVAudioInputUIDKey = @"ECVAudioInputUID";
static NSString *const ECVAudioInputNone = @"ECVAudioInputNone";
static NSString *const ECVAudioInputVideoDevice = @"ECVAudioInputVideoDevice";
@implementation ECVCaptureDocument
#pragma mark -ECVCaptureDocument
- (NSArray *)targets
{
[_targetsLock readLock];
NSArray *const targets = [[_targets copy] autorelease];
[_targetsLock unlock];
return targets;
}
- (void)addTarget:(id<ECVAVTarget> const)target
{
[_targetsLock writeLock];
[_targets addObject:target];
[_targetsLock unlock];
}
- (void)removeTarget:(id<ECVAVTarget> const)target
{
[_targetsLock writeLock];
[_targets removeObjectIdenticalTo:target];
[_targetsLock unlock];
}
- (ECVAudioTarget *)audioTarget
{
return [[_audioTarget retain] autorelease];
}
#pragma mark -
- (ECVCaptureDevice *)videoDevice
{
return [[_videoDevice retain] autorelease];
}
- (void)setVideoDevice:(ECVCaptureDevice *const)source
{
if(source == _videoDevice) return;
[_videoDevice release];
_videoDevice = [source retain];
[_videoDevice setCaptureDocument:self];
// Yes, the audio input really is dependent on the video device.
NSString *const UID = [[NSUserDefaults standardUserDefaults] objectForKey:ECVAudioInputUIDKey];
if(BTEqualObjects(ECVAudioInputVideoDevice, UID) || !UID) {
[self setAudioDevice:[[self videoDevice] builtInAudioInput]];
} else if(BTEqualObjects(ECVAudioInputNone, UID)) {
[self setAudioDevice:nil];
} else {
[self setAudioDevice:[ECVAudioInput deviceWithUID:UID]];
}
}
#pragma mark -
- (NSUInteger)pauseCount
{
return _pauseCount;
}
- (BOOL)isPaused
{
return !!_pauseCount;
}
- (void)setPaused:(BOOL const)flag
{
NSParameterAssert(flag || 0 != _pauseCount);
if(flag) {
if(1 == ++_pauseCount) [self stop];
} else {
if(0 == --_pauseCount) [self play];
}
}
- (BOOL)isPausedFromUI
{
return _pausedFromUI;
}
- (void)setPausedFromUI:(BOOL const)flag
{
if(flag == _pausedFromUI) return;
_pausedFromUI = flag;
[self setPaused:_pausedFromUI];
}
#pragma mark -
- (void)workspaceWillSleep:(NSNotification *const)aNotif
{
[self setPausedFromUI:YES];
}
#pragma mark -
- (ECVAudioInput *)audioDevice
{
return [[_audioDevice retain] autorelease];
}
- (void)setAudioDevice:(ECVAudioInput *const)device
{
if(!BTEqualObjects(device, _audioDevice)) {
[self setPaused:YES];
[_audioDevice release];
_audioDevice = [device retain];
[_audioDevice setDelegate:self];
if(_audioDevice) [_audioTarget setInputBasicDescription:[[_audioDevice stream] basicDescription]];
[self setPaused:NO];
}
NSUserDefaults *const d = [NSUserDefaults standardUserDefaults];
if(BTEqualObjects([[self videoDevice] builtInAudioInput], device)) {
[d setObject:ECVAudioInputVideoDevice forKey:ECVAudioInputUIDKey];
} else if(device) {
[d setObject:[device UID] forKey:ECVAudioInputUIDKey];
} else {
[d setObject:ECVAudioInputNone forKey:ECVAudioInputUIDKey];
}
}
#pragma mark -ECVCaptureDocument<ECVVideoTarget>
- (void)play
{
[NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceReferenceDate:_lastStopTime + 0.75]];
if(_audioDevice) [self addTarget:_audioTarget];
[_videoDevice play];
[_audioDevice start];
[_targets makeObjectsPerformSelector:@selector(play)];
[[ECVController sharedController] noteCaptureDocumentStartedPlaying:self];
}
- (void)stop
{
[[ECVController sharedController] noteCaptureDocumentStoppedPlaying:self];
[_targets makeObjectsPerformSelector:@selector(stop)];
[_videoDevice stop];
[_audioDevice stop];
[self removeTarget:_audioTarget];
_lastStopTime = [NSDate timeIntervalSinceReferenceDate];
}
- (void)pushVideoFrame:(ECVVideoFrame *const)frame
{
if(!frame) return;
[_targetsLock readLock];
[_targets makeObjectsPerformSelector:@selector(pushVideoFrame:) withObject:frame];
[_targetsLock unlock];
}
- (void)pushAudioBufferListValue:(NSValue *const)bufferListValue {}
#pragma mark -ECVCaptureDocument<ECVAudioDeviceDelegate>
- (void)audioInput:(ECVAudioInput *const)sender didReceiveBufferList:(AudioBufferList const *const)bufferList atTime:(AudioTimeStamp const *const)t
{
if(sender != _audioDevice) return;
[_targetsLock readLock];
[_targets makeObjectsPerformSelector:@selector(pushAudioBufferListValue:) withObject:[NSValue valueWithPointer:bufferList]];
[_targetsLock unlock];
}
#pragma mark -NSDocument
- (void)addWindowController:(NSWindowController *const)windowController
{
[super addWindowController:windowController];
[self addTarget:(id<ECVAVTarget>)windowController];
}
- (void)removeWindowController:(NSWindowController *const)windowController
{
[super removeWindowController:windowController];
[self removeTarget:(id<ECVAVTarget>)windowController];
}
- (void)makeWindowControllers
{
[self addWindowController:[[[ECVCaptureController alloc] init] autorelease]];
}
#pragma mark -
- (NSString *)displayName
{
return [_videoDevice name] ?: @"";
}
- (void)close
{
[self setPausedFromUI:YES];
[super close];
}
#pragma mark -NSObject
- (id)init
{
if((self = [super init])) {
_pauseCount = 1;
_pausedFromUI = YES;
_targetsLock = [[ECVReadWriteLock alloc] init];
_targets = [[NSMutableArray alloc] init];
_audioTarget = [[ECVAudioTarget alloc] init];
[_audioTarget setCaptureDocument:self];
[_audioTarget setAudioOutput:[ECVAudioOutput defaultDevice]];
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(workspaceWillSleep:) name:NSWorkspaceWillSleepNotification object:[NSWorkspace sharedWorkspace]];
}
return self;
}
- (void)dealloc
{
[[[NSWorkspace sharedWorkspace] notificationCenter] removeObserver:self];
ECVConfigController *const config = [ECVConfigController sharedConfigController];
if([config captureDocument] == self) [config setCaptureDocument:nil];
[_targetsLock release];
[_targets release];
[_audioTarget release];
[_videoDevice release];
[_audioDevice release];
[super dealloc];
}
@end