We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f360b92 commit a0525e1Copy full SHA for a0525e1
src/device/videothread.cpp
@@ -167,7 +167,7 @@ VideoThread::h264VideoStreamIndex()
167
if(m_avStream->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
168
continue;
169
170
- AVCodec *dec = avcodec_find_decoder(m_avStream->codecpar->codec_id);
+ const AVCodec *dec = avcodec_find_decoder(m_avStream->codecpar->codec_id);
171
if(!dec) {
172
qDebug() << "FRAMEBUFFER can't find decoder for stream" << i;
173
0 commit comments