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
r563: Ogg theora+vorbis export added
[cinelerra_cv/mob.git]
/
quicktime
/
encore50
/
vop_code.h
blob
cc42db7b69f22130d197d8afc6f292a69d2282e9
1
2
3
#ifndef _VM_VOP_CODE_H_
4
#define _VM_VOP_CODE_H_
5
6
#include
"bitstream.h"
7
#include
"text_code.h"
8
9
#ifdef __cplusplus
10
extern
"C"
{
11
#endif
/* __cplusplus */
12
13
struct
bit_count
{
14
Char stats_file
[
100
];
15
UInt vol
;
16
UInt vop
;
17
UInt syntax
;
18
UInt texture
;
19
UInt motion
;
20
UInt mot_shape_text
;
21
Bits text_bits
;
22
};
23
24
typedef
struct
bit_count BitCount
;
25
26
Void VopCode
_P_
((
Vop
*
curr
,
27
Vop
*
reference
,
28
Vop
*
compensated
,
29
Vop
*
error
,
30
Int enable_8x8_mv
,
31
Float time
,
32
VolConfig
*
vol_config
,
33
int
quant
34
));
35
36
#ifdef __cplusplus
37
}
38
#endif
/* __cplusplus */
39
40
#endif
/* _VM_VOP_CODE_H_ */
41