Skip to content

Commit

Permalink
Fix cout of level
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed May 11, 2024
1 parent 1185947 commit 25f44b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsMuxer/mpegVideo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ std::string MPEGSequenceHeader::getStreamDescr() const
break;
}
if (level >= 0)
rez << level << ". ";
rez << std::to_string(level) << ". ";
rez << "Resolution: " << width << ':' << height;
rez << (progressive_sequence ? 'p' : 'i') << ". ";
rez << "Frame rate: ";
Expand Down

0 comments on commit 25f44b4

Please sign in to comment.