ADTF File Library
Loading...
Searching...
No Matches
adtf2_sample_info.h
Go to the documentation of this file.
1
16
17#ifndef ADTF_FILE_ADTF2_SAMPLE_INFO
18#define ADTF_FILE_ADTF2_SAMPLE_INFO
19
22
23namespace adtf_file
24{
25
29namespace adtf2
30{
31
44
49{
50 vt_empty = 0x0000,
51 vt_null = 0x0001,
52 vt_bool = 0x0002,
53 vt_int8 = 0x0004,
54 vt_u_int8 = 0x0008,
55 vt_int16 = 0x0010,
56 vt_u_int16 = 0x0020,
57 vt_int32 = 0x0040,
58 vt_u_int32 = 0x0080,
59 vt_float32 = 0x0100,
60 vt_float64 = 0x0200,
61 vt_string = 0x0400,
62 vt_int64 = 0x0800,
63 vt_u_int64 = 0x1000,
64
65 vt_array = 0x10000000
66};
67
68}
69
70}
71
72#endif
interface class for input streams
Definition adtf_file_reader.h:46
Interface class for samples that are read from a Reader.
Definition sample.h:74
namespace for support of ADTF 2 files
Definition adtf2_adtf_core_media_sample_deserializer.h:28
void deserializeMediaSampleLogTrace(ReadSample &sample, InputStream &stream)
deserializes a sample log trace from the input stream into a sample
void deserializeMediaSampleInfo(ReadSample &sample, InputStream &stream)
deserializes a sample info from the input stream into a sample
VariantType
The variant type within ADTF 2 files.
Definition adtf2_sample_info.h:49
namespace for ADTF File library
Definition adtf2_adtf_core_media_sample_deserializer.h:25