CVB++ 15.0
c_dc_avi.h
1#pragma once
2
3#if defined __GNUC__ && !defined CVB_SHOW_WARNINGS
4# pragma GCC system_header
5#endif // __GNUC__
6
7#include "../namespace.hpp"
8
9namespace Cvb
10{
11
12CVB_BEGIN_INLINE_NS
13
14namespace CExports
15{
16
17enum DC_PARAM_AVI
18{
19 DC_VOLUME = 0x00000100,
20 DC_BALANCE = 0x00000101,
21 DC_FRAMENUMBER = 0x00000102,
22 DC_TOTALFRAMENUMBER = 0x00000103,
23 DC_REPLAYRATE = 0x00000104,
24 DC_POSITION = 0x00000105,
25 DC_TOTALTIME = 0x00000106,
26 DC_JUMPRELATIVE_FRM = 0x00000107,
27 DC_JUMPSTART = 0x00000108,
28 DC_FRAMETIME = 0x00000109,
29 DC_JUMPRELATIVE_TIM = 0x0000010A
30};
31
32namespace Video
33{
34
35const int CurrentImageIndexGroup = 1;
36const int ImageCountGroup = 0;
37
38}
39
40}
41
42CVB_END_INLINE_NS
43
44}
Root namespace for the Image Manager interface.
Definition c_bayer_to_rgb.h:17