File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/AvTranscoder/transcoder Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -237,12 +237,12 @@ bool Transcoder::processFrame()
237
237
// For each stream, process a frame
238
238
for (size_t streamIndex = 0 ; streamIndex < _streamTranscoders.size (); ++streamIndex)
239
239
{
240
- LOG_DEBUG (" Process stream " << streamIndex << " /" << ( _streamTranscoders.size () - 1 ))
240
+ LOG_DEBUG (" Process stream " << streamIndex + 1 << " /" << _streamTranscoders.size ())
241
241
242
242
// if a stream failed to process
243
243
if (!_streamTranscoders.at (streamIndex)->processFrame ())
244
244
{
245
- LOG_WARN (" Failed to process stream " << streamIndex)
245
+ LOG_WARN (" Failed to process stream at index " << streamIndex)
246
246
247
247
// if this is the end of the main stream
248
248
if (streamIndex == _mainStreamIndex) {
You can’t perform that action at this time.
0 commit comments