File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed
src/AvTranscoder/Metadatas Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,15 @@ namespace avtranscoder
15
15
*/
16
16
typedef std::map<std::string, std::string> MetadatasMap;
17
17
18
- struct Channel {
18
+ struct Channel
19
+ {
19
20
size_t id;
20
21
size_t chromaHeight;
21
22
size_t bitStep;
22
23
};
23
24
24
- struct VideoProperties {
25
+ struct VideoProperties
26
+ {
25
27
std::string codecName;
26
28
std::string codecLongName;
27
29
std::string profileName;
@@ -79,7 +81,8 @@ struct VideoProperties {
79
81
MetadatasMap getDataMap () const ;
80
82
};
81
83
82
- struct AudioProperties {
84
+ struct AudioProperties
85
+ {
83
86
std::string codecName;
84
87
std::string codecLongName;
85
88
std::string sampleFormat;
@@ -96,35 +99,40 @@ struct AudioProperties {
96
99
MetadatasMap getDataMap () const ;
97
100
};
98
101
99
- struct DataProperties {
102
+ struct DataProperties
103
+ {
100
104
size_t streamId;
101
105
102
106
public:
103
107
MetadatasMap getDataMap () const ;
104
108
};
105
109
106
- struct SubtitleProperties {
110
+ struct SubtitleProperties
111
+ {
107
112
size_t streamId;
108
113
109
114
public:
110
115
MetadatasMap getDataMap () const ;
111
116
};
112
117
113
- struct AttachementProperties {
118
+ struct AttachementProperties
119
+ {
114
120
size_t streamId;
115
121
116
122
public:
117
123
MetadatasMap getDataMap () const ;
118
124
};
119
125
120
- struct UnknownProperties {
126
+ struct UnknownProperties
127
+ {
121
128
size_t streamId;
122
129
123
130
public:
124
131
MetadatasMap getDataMap () const ;
125
132
};
126
133
127
- struct Properties {
134
+ struct Properties
135
+ {
128
136
std::string filename;
129
137
std::string formatName;
130
138
std::string formatLongName;
You can’t perform that action at this time.
0 commit comments