aboutsummaryrefslogtreecommitdiff
path: root/graphics/blender-lts29/files/patch-extern_audaspace_plugins_ffmpeg_FFMPEGReader.cpp
blob: 515c8b00191ca1c27480f01e87dd468087803323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- extern/audaspace/plugins/ffmpeg/FFMPEGReader.cpp.orig	2023-05-12 23:31:30 UTC
+++ extern/audaspace/plugins/ffmpeg/FFMPEGReader.cpp
@@ -182,7 +182,7 @@ void FFMPEGReader::init()
 
 	// get a decoder and open it
 #ifndef FFMPEG_OLD_CODE
-	AVCodec* aCodec = avcodec_find_decoder(m_formatCtx->streams[m_stream]->codecpar->codec_id);
+	const AVCodec* aCodec = avcodec_find_decoder(m_formatCtx->streams[m_stream]->codecpar->codec_id);
 
 	if(!aCodec)
 		AUD_THROW(FileException, "File couldn't be read, no decoder found with ffmpeg.");