We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35d273c commit 1dc1f09Copy full SHA for 1dc1f09
src/AvTranscoder/filter/FilterGraph.cpp
@@ -141,7 +141,7 @@ void FilterGraph::pushInBuffer(const Frame& frame)
141
<< _codec.getAVCodecContext().time_base.den << ":";
142
filterOptions << "sample_rate=" << audioFrame.getSampleRate() << ":";
143
filterOptions << "sample_fmt=" << getSampleFormatName(audioFrame.getSampleFormat()) << ":";
144
- filterOptions << "channel_layout=0x" << audioFrame.getChannelLayout();
+ filterOptions << "channel_layout=0x" << std::hex << audioFrame.getChannelLayout();
145
}
146
// video frame
147
else if(frame.isVideoFrame())
0 commit comments