unnecessary brackets removed

- distinction ffmpeg versions


Origin commit data
------------------
Branch: master
Commit: 4e086f9883
Author: Frankenstone <dampf_acc@online.de>
Date: 2021-05-17 (Mon, 17 May 2021)



------------------
This commit was generated by Migit
This commit is contained in:
Frankenstone
2021-05-17 21:07:45 +02:00
committed by vanhofen
parent ad2cd91a07
commit 2af4fc68a3
6 changed files with 14 additions and 14 deletions

View File

@@ -38,7 +38,7 @@ extern "C" {
#include <libavutil/opt.h>
}
#if (LIBAVFORMAT_VERSION_INT > AV_VERSION_INT( 57,25,100 ))
#if LIBAVFORMAT_VERSION_INT > AV_VERSION_INT(57,25,100)
#define EPLAYER_MAX_CODECS 16
struct CodecList
{
@@ -71,7 +71,7 @@ class Input
Player *player;
AVFormatContext *avfc;
#if (LIBAVFORMAT_VERSION_INT > AV_VERSION_INT( 57,25,100 ))
#if LIBAVFORMAT_VERSION_INT > AV_VERSION_INT(57,25,100)
CodecList codecs[EPLAYER_MAX_CODECS];
#endif
uint64_t readCount;