forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DVR.h
executable file
·65 lines (57 loc) · 2.04 KB
/
DVR.h
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
// -*- mode:objc -*-
/*
** DVR.h
**
** Copyright 2010
**
** Author: George Nachman
**
** Project: iTerm2
**
** Description: Implements a "digital video recorder" for iTerm2.
** This is used by the "instant replay" feature to record and
** play back the screen contents.
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#import <Cocoa/Cocoa.h>
#import <DVRBuffer.h>
#import <DVRDecoder.h>
#import <DVREncoder.h>
@interface DVR : NSObject
{
DVRBuffer* buffer_;
int capacity_;
NSMutableArray* decoders_;
DVREncoder* encoder_;
}
// Allocates a circular buffer of the given size in bytes to store screen
// contents. Somewhat more memory is used because there's some per-frame
// storage, but it should be small in comparison.
- (id)initWithBufferCapacity:(int)bytes;
- (void)dealloc;
// Save the screen state into the DVR.
// buffer: A screen image that DVREncoder understands.
// length: Number of bytes in buffer.
// info: Metadata for the frame.
- (void)appendFrame:(char*)buffer length:(int)length info:(DVRFrameInfo*)info;
// allocate a new decoder. Use -[releaseDecoder:] when you're done with it.
- (DVRDecoder*)getDecoder;
// frees a decoder allocated with -[getDecoder].
- (void)releaseDecoder:(DVRDecoder*)decoder;
// Get timestamp of first/last frame. Times are in microseconds since 1970.
- (long long)lastTimeStamp;
- (long long)firstTimeStamp;
@end