1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

DATV Demod - Make AVCodecs const

This commit is contained in:
Jon Beniston 2022-02-06 09:48:27 +00:00
parent c25837fcf7
commit e7bc48c368

View File

@ -160,8 +160,8 @@ void DATVideoRender::resetMetaData()
bool DATVideoRender::preprocessStream() bool DATVideoRender::preprocessStream()
{ {
AVDictionary *opts = nullptr; AVDictionary *opts = nullptr;
AVCodec *videoCodec = nullptr; const AVCodec *videoCodec = nullptr;
AVCodec *audioCodec = nullptr; const AVCodec *audioCodec = nullptr;
int intRet = -1; int intRet = -1;
char *buffer = nullptr; char *buffer = nullptr;