Skip to content

Commit 5ec2a73

Browse files
author
Clement Champetier
committed
Transcoder: updated doc of addStream methods
1 parent c8bc988 commit 5ec2a73

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

src/AvTranscoder/transcoder/Transcoder.hpp

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,16 @@ class AvExport Transcoder
9696

9797
~Transcoder();
9898

99-
/**
100-
* @brief Add a new stream to the output file, created from the given input description to process.
101-
* @param profileName: the encoding profile (rewrap if empty)
102-
* @param offset: in seconds
103-
* If offset is positive, the transcoder will generate black images or silence (depending on the type of stream) before
104-
* the stream to process.
105-
* If offset is negative, the transcoder will seek in the stream and start process at this specific time.
106-
*/
99+
//@{
100+
// @brief Add a new stream to the output file, created from the given input description to process.
101+
// @param profileName: the encoding profile (rewrap if empty)
102+
// @param offset: in seconds
103+
// If offset is positive, the transcoder will generate black images or silence (depending on the type of stream) before
104+
// the stream to process.
105+
// If offset is negative, the transcoder will seek in the stream and start process at this specific time.
107106
void addStream(const InputStreamDesc& inputStreamDesc, const std::string& profileName = "", const float offset = 0);
108-
109-
/**
110-
* @brief Add a new stream to the output file, created from the given input description to process.
111-
* @note Profile will be updated, be sure to pass unique profile name.
112-
*/
113107
void addStream(const InputStreamDesc& inputStreamDesc, const ProfileLoader::Profile& profile, const float offset = 0);
108+
//@}
114109

115110
//@{
116111
// @brief Add a new generated stream to the output file, created from the given encoding profile.

0 commit comments

Comments
 (0)