Skip to content

Commit 151f430

Browse files
clean indentation
1 parent 6b15e7b commit 151f430

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

src/AvTranscoder/EssenceStructures/Pixel.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ class Pixel
7474

7575
size_t m_pixelSize;
7676
size_t m_components;
77-
double m_gamma;
7877
EComponentType m_componentType;
7978
ESubsamplingType m_subsamplingType;
8079
bool m_endianess;

src/AvTranscoder/File/OutputFile.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ class AvExport OutputFile
9595

9696
/**
9797
* @brief Set the format of the output file
98-
* @param desc: the profile of the output format
99-
*/
98+
* @param desc: the profile of the output format
99+
*/
100100
virtual void setProfile( const Profile::ProfileDesc& desc );
101101

102102
virtual void setVerbose( bool verbose = false ){ _verbose = verbose; }

src/AvTranscoder/Transcoder/StreamTranscoder.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ class StreamTranscoder
5656
void setOffset( bool offset = true ){ _offset = offset; }
5757

5858
/**
59-
* @brief Get the duration of the stream.
59+
* @brief Get the duration of the stream.
6060
* @note if it's a dummy stream, return limit of double.
61-
*/
61+
*/
6262
double getDuration() const;
6363

6464
private:

src/AvTranscoder/Transcoder/Transcoder.hpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,26 +96,26 @@ class Transcoder
9696

9797
/**
9898
* @brief Process the next frame of all streams.
99-
* @return if a frame was processed or not.
100-
*/
99+
* @return if a frame was processed or not.
100+
*/
101101
bool processFrame();
102102

103103
/**
104104
* @brief Process all the streams, and ended the process depending on the transcode politic.
105-
* @param progress
106-
*/
105+
* @param progress
106+
*/
107107
void process( ProgressListener& progress );
108108

109109
/**
110110
* @brief Set the transcodage politic.
111111
* @note If you call it before adding the streams, the process will stop at the end of the shortest stream.
112-
*/
112+
*/
113113
void setProcessMethod( const EProcessMethod eProcessMethod );
114114

115115
/**
116116
* @brief Set verbose mode for the Transcoder and his streams.
117117
* @note If you call it before adding the streams, no verbose mode will be set for the new streams.
118-
*/
118+
*/
119119
void setVerbose( bool verbose = true );
120120

121121
void setOutputFps( double fps ) { _outputFps = fps; }
@@ -133,15 +133,15 @@ class Transcoder
133133
InputFile* addInputFile( const std::string& filename, const size_t streamIndex );
134134

135135
/**
136-
* @brief Get the duration of the shortest stream.
136+
* @brief Get the duration of the shortest stream.
137137
* @note if there is only dummy, return limit of double.
138-
*/
138+
*/
139139
double getMinTotalDuration() const;
140140

141141
/**
142-
* @brief Get the duration of the longest stream.
142+
* @brief Get the duration of the longest stream.
143143
* @note if there is only dummy, return limit of double.
144-
*/
144+
*/
145145
double getMaxTotalDuration() const;
146146

147147
private:

0 commit comments

Comments
 (0)