File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/AvTranscoder/transcoder Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ void Transcoder::process( IProgress& progress )
269
269
if ( _streamTranscoders.size () == 0 )
270
270
throw std::runtime_error ( " missing input streams in transcoder" );
271
271
272
- manageInfinityStreamFromProcessMethod ();
272
+ manageSwitchToGenerator ();
273
273
274
274
if ( _verbose )
275
275
std::cout << " begin transcoding" << std::endl;
@@ -504,7 +504,7 @@ double Transcoder::getOutputDuration() const
504
504
}
505
505
}
506
506
507
- void Transcoder::manageInfinityStreamFromProcessMethod ()
507
+ void Transcoder::manageSwitchToGenerator ()
508
508
{
509
509
for ( size_t i = 0 ; i < _streamTranscoders.size (); ++i )
510
510
{
Original file line number Diff line number Diff line change @@ -170,9 +170,9 @@ class AvExport Transcoder
170
170
double getOutputDuration () const ;
171
171
172
172
/* *
173
- * @brief Set for each StreamTranscoder if it is an infinity stream ( switch to generator at the end of the stream) .
173
+ * @brief Set for each StreamTranscoder if it can switch to generator at the end.
174
174
*/
175
- void manageInfinityStreamFromProcessMethod ();
175
+ void manageSwitchToGenerator ();
176
176
177
177
private:
178
178
IOutputFile& _outputFile; // /< The output media file after process (has link)
You can’t perform that action at this time.
0 commit comments