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
Merge branch 'master' of git://git.pipapo.org/cinelerra/svn into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
dv1394input.h
blob
952b24e9a0ebd9ed36df87933af7ad58d29998dd
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
28
/*
29
// Local Variables:
30
// mode: C++
31
// c-file-style: "linux"
32
// End:
33
*/