container_ffmpeg.c: minor formatting fix

Origin commit data
------------------
Branch: master
Commit: f542e48754
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-03-24 (Sun, 24 Mar 2024)

Origin message was:
------------------
- container_ffmpeg.c: minor formatting fix

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

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2024-03-24 22:23:52 +01:00
parent ca5ca80c75
commit 185d1e9ee7

View File

@@ -1489,7 +1489,7 @@ int SAM_ReadFunc(void *ptr, uint8_t *buffer, int lSize)
{
ret = (int)fread((void *) buffer, (size_t) 1, (size_t) lSize, io->pFile);
#if (LIBAVFORMAT_VERSION_MAJOR > 58) || ((LIBAVFORMAT_VERSION_MAJOR == 58) && (LIBAVFORMAT_VERSION_MINOR > 79))
if (ret==0)
if (ret == 0)
ret = AVERROR_EOF;
#endif
}