~ Fix compilation with latest avcoded library

Signed-off-by: Alexis Maiquez <almamu@almamu.com>
This commit is contained in:
Alexis Maiquez 2022-02-23 08:45:06 +01:00
parent 7cd213abf9
commit 42b8c92c1c

View File

@ -36,7 +36,7 @@ CVideo::CVideo (Core::CVideo* video, CContainer* container, CContext* context) :
if (m_videoStream == -1)
throw std::runtime_error ("Failed to find video stream");
AVCodec* codec = avcodec_find_decoder (m_formatCtx->streams [m_videoStream]->codecpar->codec_id);
const AVCodec* codec = avcodec_find_decoder (m_formatCtx->streams [m_videoStream]->codecpar->codec_id);
if (codec == nullptr)
throw std::runtime_error ("Failed to find codec");