File tree Expand file tree Collapse file tree 1 file changed +6
-19
lines changed
src/AvTranscoder/transcoder Expand file tree Collapse file tree 1 file changed +6
-19
lines changed Original file line number Diff line number Diff line change @@ -94,28 +94,15 @@ class AvExport StreamTranscoder
94
94
95
95
ITransform* _transform;
96
96
97
- int _subStreamIndex;
97
+ int _subStreamIndex; // /< Index of channel that is processed from the input stream (-1 if no demultiplexing).
98
98
99
- /* *
100
- * @brief How many frame processed for this StreamTranscoder.
101
- */
102
- size_t _frameProcessed;
103
- /* *
104
- * @brief Offset, in frame, at the beginning of the StreamTranscoder.
105
- */
106
- size_t _offset;
107
-
108
- bool _takeFromGenerator;
99
+ size_t _frameProcessed; // /< How many frame processed for this StreamTranscoder.
100
+ size_t _offset; // /< Offset, in frame, at the beginning of the StreamTranscoder.
109
101
102
+ bool _takeFromGenerator; // /< Is the data processed are taken from a generator.
110
103
bool _verbose;
111
-
112
- bool _offsetPassed;
113
-
114
- /* *
115
- * @brief Automatic switch to a generator
116
- * @note not applicable when rewrap
117
- */
118
- bool _infinityStream;
104
+ bool _offsetPassed; // /< Is the offset at the beginning of the stream is finished.
105
+ bool _infinityStream; // /< Automatically switch to a generator at the end of the stream (not applicable when rewrap);
119
106
};
120
107
121
108
}
You can’t perform that action at this time.
0 commit comments