build with ffmpeg version > 59.0.100

Origin commit data
------------------
Branch: ni/coolstream
Commit: 343c8455b6
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2021-08-28 (Sat, 28 Aug 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2021-08-28 15:22:23 +02:00
committed by vanhofen
parent 7c9840e5f5
commit f8d2330214
6 changed files with 23 additions and 1 deletions

View File

@@ -32,7 +32,11 @@ private:
pthread_mutex_t mutex;
cList<cDvbSubtitleBitmaps> *bitmaps;
AVCodecContext * avctx;
AVCodec * avcodec;
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(59,0,100)
AVCodec *avcodec;
#else
const AVCodec *avcodec;
#endif
int min_x, min_y, max_x, max_y;
cTimeMs Timeout;
public: