repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git]
/
cinelerra
/
cropvideo.h
blob
1aa1562d4846a5e6fe5212d46721f9b447170f4d
1
#ifndef CROPVIDEO_H
2
#define CROPVIDEO_H
3
4
#include
"guicast.h"
5
#include
"mwindow.inc"
6
#include
"thread.h"
7
#include
"cropvideo.inc"
8
9
class
CropVideo
:
public
BC_MenuItem
,
public
Thread
10
{
11
public
:
12
CropVideo
(
MWindow
*
mwindow
);
13
~
CropVideo
();
14
15
int
handle_event
();
16
void
run
();
17
int
load_defaults
();
18
int
save_defaults
();
19
int
fix_aspect_ratio
();
20
21
MWindow
*
mwindow
;
22
};
23
24
class
CropVideoWindow
:
public
BC_Window
25
{
26
public
:
27
CropVideoWindow
(
MWindow
*
mwindow
,
CropVideo
*
thread
);
28
~
CropVideoWindow
();
29
30
int
create_objects
();
31
32
CropVideo
*
thread
;
33
MWindow
*
mwindow
;
34
};
35
36
37
#endif