Skip to content

Commit abe853e

Browse files
author
Clement Champetier
committed
StreamTranscoder: clean documentation of attributes
1 parent a1992c0 commit abe853e

File tree

1 file changed

+6
-19
lines changed

1 file changed

+6
-19
lines changed

src/AvTranscoder/transcoder/StreamTranscoder.hpp

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -94,28 +94,15 @@ class AvExport StreamTranscoder
9494

9595
ITransform* _transform;
9696

97-
int _subStreamIndex;
97+
int _subStreamIndex; ///< Index of channel that is processed from the input stream (-1 if no demultiplexing).
9898

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.
109101

102+
bool _takeFromGenerator; ///< Is the data processed are taken from a generator.
110103
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);
119106
};
120107

121108
}

0 commit comments

Comments
 (0)