Skip to content

Commit

Permalink
Fix m_layer cout
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Oct 10, 2023
1 parent 5ef87de commit d6105b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsMuxer/mpegAudioStreamReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ const std::string MpegAudioStreamReader::getStreamInfo()
str << "Bitrate: " << m_bit_rate / 1000 << "Kbps ";
str << "Sample Rate: " << m_sample_rate / 1000 << "KHz ";
str << "Channels: " << m_nb_channels << " ";
str << "Layer: " << m_layer;
str << "Layer: " << static_cast<int>(m_layer);
return str.str();
}

0 comments on commit d6105b2

Please sign in to comment.