repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1014: Enable horizontal scrolling with the mouse wheel by pressing Ctrl.
[cinelerra_cv/ct.git]
/
cinelerra
/
dv1394input.h
blob
45fceba1ee71f1ed80d948c9d50d2f51040ad70d
1
#ifndef DV1394INPUT_H
2
#define DV1394INPUT_H
3
4
5
6
7
class
DV1394Input
:
public
Thread
8
{
9
public
:
10
DV1394Input
(
VideoDevice
*
device
);
11
~
DV1394Input
();
12
13
void
start
();
14
void
run
();
15
16
int
done
;
17
VideoDevice
*
device
;
18
int
fd
;
19
};
20
21
22
23
24
25
26
27
#endif