File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
src/AvTranscoder/transcoder Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ class AvExport StreamTranscoder
136
136
float _offset; // /< Offset, in seconds, at the beginning of the StreamTranscoder.
137
137
138
138
bool _needToSwitchToGenerator; // /< Set if need to switch to a generator during the process (because, of other streams
139
- // /duration, or an offset)
139
+ // / duration, or an offset)
140
140
};
141
141
}
142
142
Original file line number Diff line number Diff line change @@ -599,9 +599,10 @@ void Transcoder::fillProcessStat(ProcessStat& processStat)
599
599
for (size_t streamIndex = 0 ; streamIndex < _streamTranscoders.size (); ++streamIndex)
600
600
{
601
601
IOutputStream& stream = _streamTranscoders.at (streamIndex)->getOutputStream ();
602
- const IInputStream* inputStream = _streamTranscoders.at ( streamIndex )->getInputStream ();
603
- if (inputStream == NULL ) {
604
- LOG_WARN ( " Cannot process statistics of generated stream." )
602
+ const IInputStream* inputStream = _streamTranscoders.at (streamIndex)->getInputStream ();
603
+ if (inputStream == NULL )
604
+ {
605
+ LOG_WARN (" Cannot process statistics of generated stream." )
605
606
continue ;
606
607
}
607
608
const AVMediaType mediaType = inputStream->getProperties ().getStreamType ();
Original file line number Diff line number Diff line change @@ -236,13 +236,13 @@ class AvExport Transcoder
236
236
std::vector<StreamTranscoder*> _streamTranscoders; // /< All streams of the output media file after process.
237
237
std::vector<StreamTranscoder*> _streamTranscodersAllocated; // /< Streams allocated inside the Transcoder (has ownership)
238
238
239
- ProfileLoader _profileLoader; // /< Objet to get existing profiles, and add new ones for the Transcoder.
239
+ ProfileLoader _profileLoader; // /< Objet to get existing profiles, and add new ones for the Transcoder.
240
240
241
241
EProcessMethod _eProcessMethod; // /< Processing policy
242
242
size_t
243
243
_mainStreamIndex; // /< Index of stream used to stop the process of transcode in case of eProcessMethodBasedOnStream.
244
244
float _outputDuration; // /< Duration of output media used to stop the process of transcode in case of
245
- // /eProcessMethodBasedOnDuration.
245
+ // / eProcessMethodBasedOnDuration.
246
246
};
247
247
}
248
248
You can’t perform that action at this time.
0 commit comments